rubic-sdk
Version:
Simplify dApp creation
16 lines • 588 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.WalletNotConnectedError = void 0;
const rubic_sdk_error_1 = require("../rubic-sdk.error");
/**
* Thrown, when method, which requires connected wallet, is called without
* wallet being connected.
*/
class WalletNotConnectedError extends rubic_sdk_error_1.RubicSdkError {
constructor() {
super();
Object.setPrototypeOf(this, WalletNotConnectedError.prototype);
}
}
exports.WalletNotConnectedError = WalletNotConnectedError;
//# sourceMappingURL=wallet-not-connected.error.js.map
;