fasttext-native
Version:
fastText bindings for Node.js
15 lines (9 loc) • 306 B
JavaScript
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;
;