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

Concurrent updates caused an exception, for example, if you request an update to a * scaling plan that already has a pending update.

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

The service encountered an internal error.

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

Your account exceeded a limit. This exception is thrown when a per-account resource * limit is exceeded.

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

An exception was thrown for a validation issue. Review the parameters provided.

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

The specified object could not be found.

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

The token provided is not valid.

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