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

18 lines
488 B
JavaScript
Raw Normal View History

// # Validation Error
// Custom error class with status code and type prefilled.
function ValidationError(message, offendingProperty) {
this.message = message;
this.stack = new Error().stack;
this.statusCode = 422;
if (offendingProperty) {
this.property = offendingProperty;
}
this.errorType = this.name;
}
ValidationError.prototype = Object.create(Error.prototype);
ValidationError.prototype.name = 'ValidationError';
2014-06-12 14:54:01 -05:00
module.exports = ValidationError;