UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

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;