mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
6 lines
No EOL
175 B
TypeScript
6 lines
No EOL
175 B
TypeScript
export class QueryLimitError extends Error {
|
|
constructor(message: string = 'Query limit exceeded') {
|
|
super(message);
|
|
this.name = 'QueryLimitError';
|
|
}
|
|
} |