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

The target request is invalid.

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

A conflict occurred.

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

An access permissions issue occurred.

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

An internal server error occurred.

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

A service limit was exceeded.

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

The target resource cannot be found.

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

Too many service requests were made over the given time period.

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

A concurrent access issue occurred.

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