@coinbase/cdp-sdk
Version:
SDK for interacting with the Coinbase Developer Platform Wallet API
20 lines • 710 B
JavaScript
;
// This file was auto-generated by Fern from our API Definition.
Object.defineProperty(exports, "__esModule", { value: true });
exports.CoinbaseApiTimeoutError = void 0;
class CoinbaseApiTimeoutError extends Error {
cause;
constructor(message, opts) {
super(message);
Object.setPrototypeOf(this, new.target.prototype);
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
}
this.name = this.constructor.name;
if (opts?.cause != null) {
this.cause = opts.cause;
}
}
}
exports.CoinbaseApiTimeoutError = CoinbaseApiTimeoutError;
//# sourceMappingURL=CoinbaseApiTimeoutError.js.map