mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 22:13:20 +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
22 lines
563 B
JavaScript
22 lines
563 B
JavaScript
// # Validation Error
|
|
// Custom error class with status code and type prefilled.
|
|
|
|
function ValidationError(message) {
|
|
return new ValidationError(message, null);
|
|
}
|
|
|
|
function ValidationError(message, offendingProperty) {
|
|
this.message = message;
|
|
this.stack = new Error().stack;
|
|
this.code = 422;
|
|
if (offendingProperty) {
|
|
this.property = offendingProperty;
|
|
}
|
|
this.type = this.name;
|
|
}
|
|
|
|
ValidationError.prototype = Object.create(Error.prototype);
|
|
ValidationError.prototype.name = "ValidationError";
|
|
|
|
|
|
module.exports = ValidationError; |