Ghost/core/server/errors/nopermissionerror.js

15 lines
393 B
JavaScript
Raw Normal View History

// # No Permission Error
// Custom error class with status code and type prefilled.
function NoPermissionError(message) {
this.message = message;
this.stack = new Error().stack;
this.code = 403;
this.type = this.name;
}
NoPermissionError.prototype = Object.create(Error.prototype);
NoPermissionError.prototype.name = "NoPermissionError";
module.exports = NoPermissionError;