(message: string, { status = 500 }: { status?: number } = {})
| 3 | public status: number; |
| 4 | |
| 5 | constructor(message: string, { status = 500 }: { status?: number } = {}) { |
| 6 | super(message); |
| 7 | this.status = status; |
| 8 | } |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected