Ghost/core/server/errors/validationerror.js
2014-06-12 19:55:04 +00:00

19 lines
478 B
JavaScript

// # Validation Error
// Custom error class with status code and type prefilled.
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;