mirror of
https://github.com/TryGhost/Ghost.git
synced 2023-12-13 21:00:40 +01:00
fdcb67d3cc
closes #5178 - renamed error.type to error.errorType
14 lines
374 B
JavaScript
14 lines
374 B
JavaScript
// # Not found error
|
|
// Custom error class with status code and type prefilled.
|
|
|
|
function NotFoundError(message) {
|
|
this.message = message;
|
|
this.stack = new Error().stack;
|
|
this.code = 404;
|
|
this.errorType = this.name;
|
|
}
|
|
|
|
NotFoundError.prototype = Object.create(Error.prototype);
|
|
NotFoundError.prototype.name = 'NotFoundError';
|
|
|
|
module.exports = NotFoundError;
|