Files
cedar-api/src/modules/users/domain/errors/UserNotFound.ts
2026-01-16 15:33:40 +08:00

6 lines
95 B
TypeScript

export class UserNotFound extends Error {
constructor() {
super("User not found");
}
}