(message: string = "User is not logged in")
| 8 | |
| 9 | export class UserNotLoggedInError extends AuthError { |
| 10 | constructor(message: string = "User is not logged in") { |
| 11 | super(message); |
| 12 | this.name = "UserNotLoggedInError"; |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | export class UserEmailNotVerifiedError extends AuthError { |
nothing calls this directly
no outgoing calls
no test coverage detected