Ghost/core/server/errors/validation-error.js
Fabian Becker 2c3abeee03 Naming cleanup
closes #4069
- Rename everything from camelCase to lowercase + dashes
- Remove usage of `server`, `app` and `instance`
2014-09-20 21:09:16 +02:00

18 lines
477 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;