import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import type { StorageGatewayError } from "./models_0"; import { StorageGatewayServiceException as __BaseException } from "./StorageGatewayServiceException"; /** *

An internal server error has occurred during the request. For more information, see the * error and message fields.

* @public */ export declare class InternalServerError extends __BaseException { readonly name: "InternalServerError"; readonly $fault: "server"; /** *

A StorageGatewayError that provides more information about the cause * of the error.

* @public */ error?: StorageGatewayError | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

An exception occurred because an invalid gateway request was issued to the service. For * more information, see the error and message fields.

* @public */ export declare class InvalidGatewayRequestException extends __BaseException { readonly name: "InvalidGatewayRequestException"; readonly $fault: "client"; /** *

A StorageGatewayError that provides more detail about the cause of the * error.

* @public */ error?: StorageGatewayError | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

An internal server error has occurred because the service is unavailable. For more * information, see the error and message fields.

* @public */ export declare class ServiceUnavailableError extends __BaseException { readonly name: "ServiceUnavailableError"; readonly $fault: "server"; /** *

A StorageGatewayError that provides more information about the cause * of the error.

* @public */ error?: StorageGatewayError | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }