mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
02199c6b02
refs #6526 - Change our errors to use `statusCode` for the status code (like res.statusCode) - Use statusCode for anything that's supposed to be the statusCode, rather than an error idenfier/code - Update all the tests that check the key - Route tests don't need fixing as the status codes are still returned correctly
15 lines
404 B
JavaScript
15 lines
404 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.statusCode = 403;
|
|
this.errorType = this.name;
|
|
}
|
|
|
|
NoPermissionError.prototype = Object.create(Error.prototype);
|
|
NoPermissionError.prototype.name = 'NoPermissionError';
|
|
|
|
module.exports = NoPermissionError;
|