(message: string = "User is not premium")
| 22 | |
| 23 | export class UserNotPremiumError extends AuthError { |
| 24 | constructor(message: string = "User is not premium") { |
| 25 | super(message); |
| 26 | this.name = "UserNotPremiumError"; |
| 27 | } |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected