@kraken-crypto/ccxt
Version:
A cryptocurrency trading API with more than 100 exchanges in JavaScript / TypeScript / Python / C# / PHP / Go
17 lines (12 loc) • 332 B
JavaScript
;
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;