a zip code crypto-currency system good for red ONLY

invalid-property-error.js 316B

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