UNPKG
bb-inspired
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Core library for BB-inspired NestJS backend
bb-inspired
/
dist
/
filters
/
http-exception.filter.d.ts
6 lines
(5 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
ExceptionFilter
,
ArgumentsHost
,
HttpException
}
from
'@nestjs/common'
;
export
declare
class
HttpExceptionFilter
implements
ExceptionFilter
{
private
readonly
logger;
catch
(
exception
:
HttpException
,
host
:
ArgumentsHost
):
void
; }