/** * InvalidRateQuoteException * * Thrown when a rate quote is invalid or malformed */ export class InvalidRateQuoteException extends Error { constructor(message: string) { super(message); this.name = 'InvalidRateQuoteException'; Object.setPrototypeOf(this, InvalidRateQuoteException.prototype); } }