import BaseException from "./BaseException";
export default class APIConnectionException extends BaseException {
    constructor(httpResponseCode: any, status: string, errorCode: string, errorMessage: string);
}
