Ghost/core/server/errors/validationerror.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

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;