(message: string = "The user's email is not verified")
| 15 | |
| 16 | export class UserEmailNotVerifiedError extends AuthError { |
| 17 | constructor(message: string = "The user's email is not verified") { |
| 18 | super(message); |
| 19 | this.name = "UserEmailNotVerifiedError"; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | export class UserNotPremiumError extends AuthError { |
nothing calls this directly
no outgoing calls
no test coverage detected