mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 22:13:20 +03:00
15 lines
369 B
JavaScript
15 lines
369 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.type = this.name;
|
||
|
}
|
||
|
|
||
|
NotFoundError.prototype = Object.create(Error.prototype);
|
||
|
NotFoundError.prototype.name = "NotFoundError";
|
||
|
|
||
|
|
||
|
module.exports = NotFoundError;
|