Rocky_Mountain_Vending/.pnpm-store/v10/files/42/331007a82fb0b4058c575eb84ec4104d55f06d93141d84797004e3f02d6baf787e0247eab25b62af2b401e480b0fbca2a5430b4fe45811dd380a7df59e2754
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

35 lines
1.3 KiB
Text

import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
import { OAuth2ErrorCode } from "./enums";
import { SigninServiceException as __BaseException } from "./SigninServiceException";
export declare class AccessDeniedException extends __BaseException {
readonly name: "AccessDeniedException";
readonly $fault: "client";
error: OAuth2ErrorCode | undefined;
constructor(
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
);
}
export declare class InternalServerException extends __BaseException {
readonly name: "InternalServerException";
readonly $fault: "server";
error: OAuth2ErrorCode | undefined;
constructor(
opts: __ExceptionOptionType<InternalServerException, __BaseException>
);
}
export declare class TooManyRequestsError extends __BaseException {
readonly name: "TooManyRequestsError";
readonly $fault: "client";
error: OAuth2ErrorCode | undefined;
constructor(
opts: __ExceptionOptionType<TooManyRequestsError, __BaseException>
);
}
export declare class ValidationException extends __BaseException {
readonly name: "ValidationException";
readonly $fault: "client";
error: OAuth2ErrorCode | undefined;
constructor(
opts: __ExceptionOptionType<ValidationException, __BaseException>
);
}