instasaas / lib /errors.ts
Persano's picture
Upload 25 files
5ca475a verified
raw
history blame
197 Bytes
/**
* Custom error for API rate limiting (429 errors).
*/
export class RateLimitError extends Error {
constructor(message: string) {
super(message);
this.name = 'RateLimitError';
}
}