Rocky_Mountain_Vending/.pnpm-store/v10/files/66/8ec2e7d22ad2ff6dd3408f8d17a394ba73fc578e438e2d52e4bb6231dd38416b439713cbadef4fdae7b5a076a586a8598f06d2c4cde0b349f4132202fc11f7
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

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>
);
}