exception.service.d.ts 308 B

12345678
  1. import { ApiResponse } from '../interfaces/api-response.interface';
  2. export declare class ExceptionService {
  3. getHttpResponse(exception: unknown): ApiResponse<null>;
  4. private handleHttpException;
  5. private isClassValidatorException;
  6. private handleUnknownException;
  7. private getExceptionCode;
  8. }