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

The specified container was not found for the specified account.

* @public */ export declare class ContainerNotFoundException extends __BaseException { readonly name: "ContainerNotFoundException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The service is temporarily unavailable.

* @public */ export declare class InternalServerError extends __BaseException { readonly name: "InternalServerError"; readonly $fault: "server"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Could not perform an operation on an object that does not exist.

* @public */ export declare class ObjectNotFoundException extends __BaseException { readonly name: "ObjectNotFoundException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The requested content range is not valid.

* @public */ export declare class RequestedRangeNotSatisfiableException extends __BaseException { readonly name: "RequestedRangeNotSatisfiableException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }