mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-22 02:14:41 -05:00
7 lines
137 B
TypeScript
7 lines
137 B
TypeScript
export class LimitReachedError extends Error {
|
|
constructor(message: string) {
|
|
super(message);
|
|
this.name = "LimitReachedError";
|
|
}
|
|
}
|