UNPKG

ccxt

Version:

A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges

18 lines (13 loc) 412 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var base = require('./base.js'); // ---------------------------------------------------------------------------- /** * AbortError interface for cancelled requests */ class AbortError extends base.FetchBaseError { constructor(message, type = 'aborted') { super(message, type); } } exports.AbortError = AbortError;