import type { CustomErrorOptions } from "../types/CustomErrorOptions"; import { CustomError } from "./CustomError"; export class TooManyRequests extends CustomError { constructor(code: string, options: CustomErrorOptions = {}) { super(code, options); Object.setPrototypeOf(this, TooManyRequests.prototype); this.name = "TooManyRequests"; } }