import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ChimeSDKMessagingServiceException as __BaseException } from "./ChimeSDKMessagingServiceException"; import type { ErrorCode } from "./enums"; /** *

The input parameters don't match the service's restrictions.

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

The request could not be processed because of conflict in the current state of the * resource.

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

The client is permanently forbidden from making the request.

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

One or more of the resources in the request does not exist in the system.

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

The service encountered an unexpected error.

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

The service is currently unavailable.

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

The client exceeded its request rate limit.

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

The client is not currently authorized to make the request.

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

The request exceeds the resource limit.

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