Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Persano
/
instasaas
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c63f8f4
instasaas
/
lib
/
errors.ts
Persano
Upload 25 files
5ca475a
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
197 Bytes
/**
* Custom error for API rate limiting (429 errors).
*/
export
class
RateLimitError
extends
Error
{
constructor
(
message:
string
) {
super
(message);
this
.
name
=
'RateLimitError'
;
}
}