(reason?: string)
| 17 | |
| 18 | export class Forbidden extends HttpException { |
| 19 | constructor(reason?: string) { |
| 20 | super(403, reason || 'Forbidden'); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | export class NotFound extends HttpException { |
nothing calls this directly
no outgoing calls
no test coverage detected