UNPKG

react_ujs

Version:

Rails UJS for the react-rails gem

15 lines (9 loc) 306 B
'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;