(status: number, message: string)
| 3 | public message: string; |
| 4 | |
| 5 | constructor(status: number, message: string) { |
| 6 | super(message); |
| 7 | this.status = status; |
| 8 | this.message = message; |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | export class Unauthorized extends HttpException { |
nothing calls this directly
no outgoing calls
no test coverage detected