test-ic-wallet-middleware-icrc
Version:
Ic middleware wallet ICRC protocol
13 lines (12 loc) • 386 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IcrcLegerError = void 0;
const common_1 = require("@ic-wallet-middleware/common");
class IcrcLegerError extends common_1.BadRequestError {
errorType;
constructor(errorType, message) {
super(message);
this.errorType = errorType;
}
}
exports.IcrcLegerError = IcrcLegerError;