Sha256: 0b6ff846b6de1d40b85279ff91a06bceb471e8b6e9b4a3cc168a9b515f77c078
Contents?: true
Size: 306 Bytes
Versions: 53
Compression:
Stored size: 306 Bytes
Contents
'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;
Version data entries
53 entries across 53 versions & 7 rubygems