| 1 | // Error for user not existing |
| 2 | export class UserNotFoundError extends Error { |
| 3 | constructor(message: string = "User not found") { |
| 4 | super(message); |
| 5 | this.name = "UserNotFoundError"; |
nothing calls this directly
no outgoing calls
no test coverage detected