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

The service failed in an unexpected way.

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

Bad request. The request is missing required parameters or has invalid * parameters.

* @public */ export declare class InvalidRequestException extends __BaseException { readonly name: "InvalidRequestException"; readonly $fault: "client"; Message?: string | undefined; Code?: string | undefined; /** *

The request omitted one or more required parameters.

* @public */ RequiredParameters?: string[] | undefined; /** *

The request included parameters that cannot be provided together.

* @public */ MutuallyExclusiveParameters?: string[] | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request failed because a limit was exceeded.

* @public */ export declare class LimitExceededException extends __BaseException { readonly name: "LimitExceededException"; readonly $fault: "client"; Message?: string | undefined; Code?: string | undefined; /** *

Value is the type of resource for which a limit was exceeded.

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

A requested resource was not found.

* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; Message?: string | undefined; Code?: string | undefined; /** *

Value is the type of resource that was not found.

* @public */ ResourceType?: string | undefined; /** *

Value is a list of resource IDs that were not found.

* @public */ ResourceIds?: string[] | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }