@bigmi/client
Version:
Reactive primitives for Bitcoin apps.
12 lines (11 loc) • 350 B
JavaScript
import { BaseError } from "@bigmi/core";
//#region src/errors/config.ts
var ChainNotConfiguredError = class extends BaseError {
constructor(chainId) {
super(`Chain ${chainId ? `: ${chainId}` : ""} not configured.`);
this.name = "ChainNotConfiguredError";
}
};
//#endregion
export { ChainNotConfiguredError };
//# sourceMappingURL=config.js.map