@teamhive/nestjs-common
Version:
Our common decorators, services, etc for NestJS projects
10 lines (9 loc) • 508 B
TypeScript
import { ArgumentsHost, ContextType } from '@nestjs/common';
import { ErrorHandler } from '../services/error-handler/error-handler.service';
export declare class BaseHttpExceptionFilter {
protected readonly errorHandler: ErrorHandler;
constructor(errorHandler: ErrorHandler);
getInitialException(exception: any): any;
getHostContextType(host: ArgumentsHost): ContextType;
handleRpcException(exception: any, host: ArgumentsHost, logException: boolean): import("rxjs").Observable<never>;
}