UI for Zipcoin Blue

errors.d.ts 505B

1234567891011121314151617
  1. import { ValidationError } from '../definitions';
  2. export declare class BaseError extends Error {
  3. message: string;
  4. name: string;
  5. stack: string;
  6. constructor(message: string);
  7. toString(): string;
  8. }
  9. export declare class InputValidationError extends BaseError {
  10. errors: ValidationError[];
  11. constructor(message: string, errors: ValidationError[]);
  12. }
  13. export declare class CommandNotFoundError extends BaseError {
  14. args: string[];
  15. constructor(message: string, args: string[]);
  16. }