mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 15:53:16 +03:00
fd0f5a5028
closes #2690 - added new error classes - moved errorhandling.js to /errors/index.js - changed API errors to use new classes - updated tests
15 lines
393 B
JavaScript
15 lines
393 B
JavaScript
// # 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; |