mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 09:53:32 +03:00
2c3abeee03
closes #4069 - Rename everything from camelCase to lowercase + dashes - Remove usage of `server`, `app` and `instance`
18 lines
477 B
JavaScript
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;
|