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

An exception indicating Amazon Fraud Detector does not have the needed permissions. This can occur if you submit a request, such as PutExternalModel, that specifies a role that is not in your account.

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

An exception indicating an internal server error.

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

An exception indicating a throttling error.

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

An exception indicating a specified value is not allowed.

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

An exception indicating the specified resource was not found.

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

An exception indicating there was a conflict during a delete operation.

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

An exception indicating that the attached customer-owned (external) model threw an exception when Amazon Fraud Detector invoked the model.

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