0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/server/errors/validationerror.js

22 lines
563 B
JavaScript
Raw Normal View History

// # 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;