Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
import { SSOServiceException as __BaseException } from "./SSOServiceException";
|
|
export declare class InvalidRequestException extends __BaseException {
|
|
readonly name: "InvalidRequestException";
|
|
readonly $fault: "client";
|
|
constructor(
|
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
);
|
|
}
|
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
readonly name: "ResourceNotFoundException";
|
|
readonly $fault: "client";
|
|
constructor(
|
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
);
|
|
}
|
|
export declare class TooManyRequestsException extends __BaseException {
|
|
readonly name: "TooManyRequestsException";
|
|
readonly $fault: "client";
|
|
constructor(
|
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
);
|
|
}
|
|
export declare class UnauthorizedException extends __BaseException {
|
|
readonly name: "UnauthorizedException";
|
|
readonly $fault: "client";
|
|
constructor(
|
|
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
);
|
|
}
|