frontend/.pnpm-store/v3/files/2c/b32224fbc60dfe898c928959408d45bf12ea1db6af6ca778c226b82876e8da30140e11fc45ed1f596dff140373405e334dfb7fe9146e4d57412adeb8c652e5

11 lines
316 B
Plaintext

function InvalidPropertyError(message) {
this.name = 'InvalidPropertyError';
this.message = message;
this.stack = (new Error()).stack;
}
InvalidPropertyError.prototype = Object.create(Error.prototype);
InvalidPropertyError.prototype.constructor = InvalidPropertyError;
module.exports = InvalidPropertyError;