Files
maaw/lib/services/errors.ts
Michael Dausmann a7f8c37f99 prettier fixes #16
2023-10-24 21:18:03 +11:00

7 lines
168 B
TypeScript

export class AccountLimitError extends Error {
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, AccountLimitError.prototype);
}
}