test-ic-wallet-middleware-icrc
Version:
Ic middleware wallet ICRC protocol
12 lines (11 loc) • 361 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TransactionsRepositoryError = void 0;
class TransactionsRepositoryError extends Error {
errorType;
constructor(errorType, message) {
super(message);
this.errorType = errorType;
}
}
exports.TransactionsRepositoryError = TransactionsRepositoryError;