UNPKG

@sky-mavis/tanto-widget

Version:
16 lines 539 B
class TantoWidgetError extends Error { code; details; constructor(code, message, details) { super(`[${code}] ${message}`); this.code = code; this.details = details; this.name = 'TantoWidgetError'; } } const TantoWidgetErrorCodes = { CLIENT_ID_REQUIRED: 'CLIENT_ID_REQUIRED', KEYLESS_WALLET_CONFIG_MISSING_CLIENT_ID: 'KEYLESS_WALLET_CONFIG_MISSING_CLIENT_ID', CREATE_ACCOUNT_FAILED: 'CREATE_ACCOUNT_FAILED', CONTEXT_NOT_INITIALIZED: 'CONTEXT_NOT_INITIALIZED' };export{TantoWidgetError,TantoWidgetErrorCodes};