NestJS - Interceptors
Given this ExceptionMappingInterceptor code snippet, what will be the output if the handler throws an error?
intercept(context, next) {
return next.handle().pipe(
catchError(err => {
return throwError(() => new BadRequestException('Mapped error'));
}),
);
}