(exception: Error | HttpException, ctx: ArgumentsHost)
| 10 | private filters: ExceptionFilterMetadata[] = []; |
| 11 | |
| 12 | public next(exception: Error | HttpException, ctx: ArgumentsHost) { |
| 13 | if (this.invokeCustomFilters(exception, ctx)) { |
| 14 | return; |
| 15 | } |
| 16 | super.catch(exception, ctx); |
| 17 | } |
| 18 | |
| 19 | public setCustomFilters(filters: ExceptionFilterMetadata[]) { |
| 20 | if (!Array.isArray(filters)) { |
no test coverage detected