| 165 | } |
| 166 | |
| 167 | @Controller('', { |
| 168 | use: [(req, res, next) => { |
| 169 | res.locals.data = []; |
| 170 | next(); |
| 171 | }], |
| 172 | exceptions: [ExceptionOneBase] |
| 173 | }) |
| 174 | class BaseExController extends ApiController { } |
| 175 | |
| 176 | @Controller('/child', { |
| 177 | exceptions: [ExceptionOne] |
nothing calls this directly
no test coverage detected