import { Exception } from "jzo-library"; export declare class HttpRequestException extends Exception { static Cast: (obj: any) => HttpRequestException; static CastArray: (obj: any) => Array; private readonly _httpStatusCode; private readonly _responseContent; constructor(httpStatusCode: number, responseContent: string, message?: string, innerException?: Exception); get httpStatusCode(): number; get responseContent(): string; }