mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 16:41:24 +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
381 B
JavaScript
15 lines
381 B
JavaScript
// # Bad request error
|
|
// Custom error class with status code and type prefilled.
|
|
|
|
function BadRequestError(message) {
|
|
this.message = message;
|
|
this.stack = new Error().stack;
|
|
this.code = 400;
|
|
this.type = this.name;
|
|
}
|
|
|
|
BadRequestError.prototype = Object.create(Error.prototype);
|
|
BadRequestError.prototype.name = "BadRequestError";
|
|
|
|
|
|
module.exports = BadRequestError; |