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

You do not have sufficient access to perform this action.

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

You do not have sufficient access to perform this action.

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

Thrown when performing an action because a dependency would be broken.

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

One or more parameters provided to the action are not valid.

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

The request was denied because it would exceed one or more service quotas or limits.

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

The request was denied due to request throttling.

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

The request contains an invalid parameter value.

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

Your request has conflicting operations. This can occur if you're trying to perform more than one operation on the same resource at the same time.

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

The request processing has failed because of an unknown error, exception, or * failure.

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

The resource was not found.

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