import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import { GreengrassServiceException as __BaseException } from "./GreengrassServiceException"; import type { ErrorDetail } from "./models_0"; /** * General error information. * @public */ export declare class BadRequestException extends __BaseException { readonly name: "BadRequestException"; readonly $fault: "client"; /** * Details about the error. * @public */ ErrorDetails?: ErrorDetail[] | undefined; /** * A message containing information about the error. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** * General error information. * @public */ export declare class InternalServerErrorException extends __BaseException { readonly name: "InternalServerErrorException"; readonly $fault: "server"; /** * Details about the error. * @public */ ErrorDetails?: ErrorDetail[] | undefined; /** * A message containing information about the error. * @public */ Message?: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }