juna
Version:
A cross platform NFT lending client for serious lenders
21 lines (18 loc) • 387 B
text/typescript
export class AccountUnderfunded extends Error {
constructor() {
super("");
this.name = this.constructor.name;
}
}
export class UnsufficientAllowance extends Error {
constructor() {
super("");
this.name = this.constructor.name;
}
}
export class CollectionNotSupported extends Error {
constructor() {
super("");
this.name = this.constructor.name;
}
}