rowboat/apps/rowboat/app/lib/client_utils.ts
2025-02-04 16:35:12 +05:30

6 lines
No EOL
175 B
TypeScript

export class QueryLimitError extends Error {
constructor(message: string = 'Query limit exceeded') {
super(message);
this.name = 'QueryLimitError';
}
}