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

An error on the server occurred when trying to process a request.

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

An error on the client occurred. Typically, the cause is an invalid input value.

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

A specified resource cannot be located.

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

A second request to use or change an object was not allowed. This can result from retrying a request using a parameter that was not present in the original request.

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

The subscriber exceeded the maximum number of operations. This exception can occur when listing objects such as DataSource.

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

The exception is thrown when a predict request is made to an unmounted MLModel.

* @public */ export declare class PredictorNotMountedException extends __BaseException { readonly name: "PredictorNotMountedException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); }