Files
HabitTrove/lib/exceptions.ts
2025-02-18 23:43:23 -05:00

7 lines
137 B
TypeScript

export class PermissionError extends Error {
constructor(message: string) {
super(message)
this.name = 'PermissionError'
}
}