UNPKG

juna

Version:

A cross platform NFT lending client for serious lenders

21 lines (18 loc) 387 B
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; } }