(message: string)
| 230 | |
| 231 | export class UnauthorizedError extends Error { |
| 232 | constructor(message: string) { |
| 233 | super(message); |
| 234 | this.name = 'UnauthorizedError'; |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected