1function InvalidPropertyError(message) { 2 this.name = 'InvalidPropertyError'; 3 this.message = message; 4 this.stack = (new Error()).stack; 5} 6 7InvalidPropertyError.prototype = Object.create(Error.prototype); 8InvalidPropertyError.prototype.constructor = InvalidPropertyError; 9 10module.exports = InvalidPropertyError; 11