import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { PinpointSMSVoiceServiceException as __BaseException } from "./PinpointSMSVoiceServiceException"; /** * The resource specified in your request already exists. * @public */ export declare class AlreadyExistsException extends __BaseException { readonly name: "AlreadyExistsException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * The input you provided is invalid. * @public */ export declare class BadRequestException extends __BaseException { readonly name: "BadRequestException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * The API encountered an unexpected error and couldn't complete the request. You might be able to successfully issue the request again in the future. * @public */ export declare class InternalServiceErrorException extends __BaseException { readonly name: "InternalServiceErrorException"; readonly $fault: "server"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * There are too many instances of the specified resource type. * @public */ export declare class LimitExceededException extends __BaseException { readonly name: "LimitExceededException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * You've issued too many requests to the resource. Wait a few minutes, and then try again. * @public */ export declare class TooManyRequestsException extends __BaseException { readonly name: "TooManyRequestsException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * The resource you attempted to access doesn't exist. * @public */ export declare class NotFoundException extends __BaseException { readonly name: "NotFoundException"; readonly $fault: "client"; Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }