Files
sign/packages/lib/errors/user-exists.ts

6 lines
103 B
TypeScript
Raw Normal View History

2023-06-09 18:21:18 +10:00
export class UserExistsError extends Error {
constructor() {
super('User already exists');
}
}