export declare class BaseException extends Error {
    httpResponseCode: any;
    status: any;
    errorCode: string;
    errorMessage: string;
    constructor(httpResponseCode: any, status: any, errorCode: string, errorMessage: string);
    getHttpResponseCode(): any;
    getStatus(): any;
    getErrorCode(): string;
    getErrorMessage(): string;
}
