UNPKG

@fioprotocol/fiosdk

Version:

The Foundation for Interwallet Operability (FIO) is a consortium of leading blockchain wallets, exchanges and payments providers that seeks to accelerate blockchain adoption by reducing the risk, complexity, and inconvenience of sending and receiving cryp

16 lines 502 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ValidationError = void 0; class ValidationError extends Error { constructor(list, ...params) { super(...params); this.list = []; if (Error.captureStackTrace) { Error.captureStackTrace(this, ValidationError); } this.name = 'ValidationError'; this.list = list; } } exports.ValidationError = ValidationError; //# sourceMappingURL=ValidationError.js.map