dvijaykrishnan's picture
Deployment fix for HF
ceb943f
Raw
History Blame Contribute Delete
292 Bytes
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';
}
}