Spaces:
Runtime error
Runtime error
| export class MarketplaceRateLimitError extends Error { | |
| constructor( | |
| public marketplace: string, | |
| public retryAfter: number | |
| ) { | |
| super(`${marketplace} API rate limit exceeded. Retry after ${retryAfter}s`); | |
| this.name = 'MarketplaceRateLimitError'; | |
| } | |
| } | |