@sx-bet/sportx-js
Version:
Provides an easy to use API to interact with the SportX relayer.
13 lines • 379 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.APIError = void 0;
class APIError extends Error {
constructor(details = {}, ...args) {
super(...args);
this.details = {};
Error.captureStackTrace(this, Error);
this.details = details;
}
}
exports.APIError = APIError;
//# sourceMappingURL=api_error.js.map