UI for Zipcoin Blue

error.js 186B

1234567891011
  1. 'use strict'
  2. function ValidationError (errors) {
  3. this.name = 'ValidationError'
  4. this.errors = errors
  5. }
  6. ValidationError.prototype = Error.prototype
  7. module.exports = ValidationError