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

You don't have permissions to access the resource.

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

Exception is thrown when an operation has been disabled.

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

The request failed because of an unknown error, exception, or failure (the failure is * internal to the service).

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

You attempted to create more than the allowed number of tags.

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

You attempted to create a resource that already exists.

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

You attempted to access or delete a resource that does not exist.

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

An exception for missing or invalid input fields.

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

The client attempted to remove a resource that is currently in use.

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

An invalid pagination token provided in the request.

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