import { ArgumentsHost, ExceptionFilter } from '@nestjs/common'; import { BaseExceptionFilter } from './base-exception.filter'; export declare class HttpExceptionFilter extends BaseExceptionFilter implements ExceptionFilter { protected isMicroservice: boolean; catch(exception: any, host: ArgumentsHost): void; catchAnotherException(exception: any, host: ArgumentsHost): void; catchHttpException(exception: any, host: ArgumentsHost, language: string): void; catchEntityNotFound(exception: any, host: ArgumentsHost): void; catchBadRequestWithArgs(host: ArgumentsHost, messageKey: string, language: string, args: { field: string; }): void; catchPayloadTooLargeException(host: ArgumentsHost, messageKey: string, language: string): void; }