export class InsufficientReservesError extends Error { public constructor() { super() this.name = this.constructor.name } } export class InsufficientInputAmountError extends Error { public constructor() { super() this.name = this.constructor.name } } 1 change: 1 addition & 0 deletions 1 src...