You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
828 B
35 lines
828 B
4 years ago
|
'use strict';
|
||
|
|
||
|
var resolve = require('./resolve');
|
||
|
|
||
|
module.exports = {
|
||
|
Validation: errorSubclass(ValidationError),
|
||
|
MissingRef: errorSubclass(MissingRefError)
|
||
|
};
|
||
|
|
||
|
|
||
|
function ValidationError(errors) {
|
||
|
this.message = 'validation failed';
|
||
|
this.errors = errors;
|
||
|
this.ajv = this.validation = true;
|
||
|
}
|
||
|
|
||
|
|
||
|
MissingRefError.message = function (baseId, ref) {
|
||
|
return 'can\'t resolve reference ' + ref + ' from id ' + baseId;
|
||
|
};
|
||
|
|
||
|
|
||
|
function MissingRefError(baseId, ref, message) {
|
||
|
this.message = message || MissingRefError.message(baseId, ref);
|
||
|
this.missingRef = resolve.url(baseId, ref);
|
||
|
this.missingSchema = resolve.normalizeId(resolve.fullPath(this.missingRef));
|
||
|
}
|
||
|
|
||
|
|
||
|
function errorSubclass(Subclass) {
|
||
|
Subclass.prototype = Object.create(Error.prototype);
|
||
|
Subclass.prototype.constructor = Subclass;
|
||
|
return Subclass;
|
||
|
}
|