Ghost/core/server/errors/notfounderror.js
Sebastian Gierlinger fd0f5a5028 Add distinct error classes
closes #2690
- added new error classes
- moved errorhandling.js to /errors/index.js
- changed API errors to use new classes
- updated tests
2014-05-09 12:11:29 +02:00

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;