mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-07 20:41:22 -06:00
15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
'use strict';
|
|
|
|
module.exports = ValidationError;
|
|
|
|
|
|
function ValidationError(errors) {
|
|
this.message = 'validation failed';
|
|
this.errors = errors;
|
|
this.ajv = this.validation = true;
|
|
}
|
|
|
|
|
|
ValidationError.prototype = Object.create(Error.prototype);
|
|
ValidationError.prototype.constructor = ValidationError;
|