export declare enum CustomExceptionStatus { BadRequest = 0, InternalError = 1, NotFound = 2, Unauthorized = 3, Forbidden = 4 } export declare class CustomException { status: CustomExceptionStatus; path: string; errors: any; }