mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
7 lines
137 B
TypeScript
7 lines
137 B
TypeScript
export class PermissionError extends Error {
|
|
constructor(message: string) {
|
|
super(message)
|
|
this.name = 'PermissionError'
|
|
}
|
|
}
|