import { Exception } from '@dolittle/tooling.common.utilities'; /** * The exception that gets thrown when no connection to the internet could be established * * @export * @class NotConnectedToInternet * @extends {Exception} */ export declare class NotConnectedToInternet extends Exception { /** * Instantiates an instance of {NotConnectedToInternet}. * @param {string} [message] */ constructor(message?: string); }