import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
import { ResourceType, ValidationExceptionReason } from "./enums";
import { IvschatServiceException as __BaseException } from "./IvschatServiceException";
import { ValidationExceptionField } from "./models_0";
/**
*
* @public
*/
export declare class AccessDeniedException extends __BaseException {
readonly name: "AccessDeniedException";
readonly $fault: "client";
/**
* @internal
*/
constructor(opts: __ExceptionOptionType);
}
/**
*
* @public
*/
export declare class PendingVerification extends __BaseException {
readonly name: "PendingVerification";
readonly $fault: "client";
/**
* @internal
*/
constructor(opts: __ExceptionOptionType);
}
/**
*
* @public
*/
export declare class ResourceNotFoundException extends __BaseException {
readonly name: "ResourceNotFoundException";
readonly $fault: "client";
/**
*
* @public
*/
resourceId: string | undefined;
/**
*
* @public
*/
resourceType: ResourceType | undefined;
/**
* @internal
*/
constructor(opts: __ExceptionOptionType);
}
/**
*
* @public
*/
export declare class ValidationException extends __BaseException {
readonly name: "ValidationException";
readonly $fault: "client";
/**
*
* @public
*/
reason: ValidationExceptionReason | undefined;
/**
*
* @public
*/
fieldList?: ValidationExceptionField[] | undefined;
/**
* @internal
*/
constructor(opts: __ExceptionOptionType);
}
/**
*
* @public
*/
export declare class ConflictException extends __BaseException {
readonly name: "ConflictException";
readonly $fault: "client";
/**
*
* @public
*/
resourceId: string | undefined;
/**
*
* @public
*/
resourceType: ResourceType | undefined;
/**
* @internal
*/
constructor(opts: __ExceptionOptionType);
}
/**
*
* @public
*/
export declare class ServiceQuotaExceededException extends __BaseException {
readonly name: "ServiceQuotaExceededException";
readonly $fault: "client";
/**
*
* @public
*/
resourceId: string | undefined;
/**
*
* @public
*/
resourceType: ResourceType | undefined;
/**
*
* @public
*/
limit: number | undefined;
/**
* @internal
*/
constructor(opts: __ExceptionOptionType);
}
/**
*
* @public
*/
export declare class ThrottlingException extends __BaseException {
readonly name: "ThrottlingException";
readonly $fault: "client";
/**
*
* @public
*/
resourceId: string | undefined;
/**
*
* @public
*/
resourceType: ResourceType | undefined;
/**
*
* @public
*/
limit: number | undefined;
/**
* @internal
*/
constructor(opts: __ExceptionOptionType);
}
/**
*
* @public
*/
export declare class InternalServerException extends __BaseException {
readonly name: "InternalServerException";
readonly $fault: "server";
/**
* @internal
*/
constructor(opts: __ExceptionOptionType);
}