Rocky_Mountain_Vending/.pnpm-store/v10/files/45/161cdd039a5aaeb90414941612d141b6e546eb34dec20efa2ba01c43ae622097acd3459fa09749b62220c5ef7e79a2e836cc2ac2f6aa504d31b53c73a9318b
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

173 lines
4.7 KiB
Text

import { S3ServiceException as __BaseException } from "./S3ServiceException";
export class NoSuchUpload extends __BaseException {
name = "NoSuchUpload";
$fault = "client";
constructor(opts) {
super({
name: "NoSuchUpload",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, NoSuchUpload.prototype);
}
}
export class ObjectNotInActiveTierError extends __BaseException {
name = "ObjectNotInActiveTierError";
$fault = "client";
constructor(opts) {
super({
name: "ObjectNotInActiveTierError",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, ObjectNotInActiveTierError.prototype);
}
}
export class BucketAlreadyExists extends __BaseException {
name = "BucketAlreadyExists";
$fault = "client";
constructor(opts) {
super({
name: "BucketAlreadyExists",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, BucketAlreadyExists.prototype);
}
}
export class BucketAlreadyOwnedByYou extends __BaseException {
name = "BucketAlreadyOwnedByYou";
$fault = "client";
constructor(opts) {
super({
name: "BucketAlreadyOwnedByYou",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, BucketAlreadyOwnedByYou.prototype);
}
}
export class NoSuchBucket extends __BaseException {
name = "NoSuchBucket";
$fault = "client";
constructor(opts) {
super({
name: "NoSuchBucket",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, NoSuchBucket.prototype);
}
}
export class InvalidObjectState extends __BaseException {
name = "InvalidObjectState";
$fault = "client";
StorageClass;
AccessTier;
constructor(opts) {
super({
name: "InvalidObjectState",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, InvalidObjectState.prototype);
this.StorageClass = opts.StorageClass;
this.AccessTier = opts.AccessTier;
}
}
export class NoSuchKey extends __BaseException {
name = "NoSuchKey";
$fault = "client";
constructor(opts) {
super({
name: "NoSuchKey",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, NoSuchKey.prototype);
}
}
export class NotFound extends __BaseException {
name = "NotFound";
$fault = "client";
constructor(opts) {
super({
name: "NotFound",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, NotFound.prototype);
}
}
export class EncryptionTypeMismatch extends __BaseException {
name = "EncryptionTypeMismatch";
$fault = "client";
constructor(opts) {
super({
name: "EncryptionTypeMismatch",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, EncryptionTypeMismatch.prototype);
}
}
export class InvalidRequest extends __BaseException {
name = "InvalidRequest";
$fault = "client";
constructor(opts) {
super({
name: "InvalidRequest",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, InvalidRequest.prototype);
}
}
export class InvalidWriteOffset extends __BaseException {
name = "InvalidWriteOffset";
$fault = "client";
constructor(opts) {
super({
name: "InvalidWriteOffset",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, InvalidWriteOffset.prototype);
}
}
export class TooManyParts extends __BaseException {
name = "TooManyParts";
$fault = "client";
constructor(opts) {
super({
name: "TooManyParts",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, TooManyParts.prototype);
}
}
export class IdempotencyParameterMismatch extends __BaseException {
name = "IdempotencyParameterMismatch";
$fault = "client";
constructor(opts) {
super({
name: "IdempotencyParameterMismatch",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, IdempotencyParameterMismatch.prototype);
}
}
export class ObjectAlreadyInActiveTierError extends __BaseException {
name = "ObjectAlreadyInActiveTierError";
$fault = "client";
constructor(opts) {
super({
name: "ObjectAlreadyInActiveTierError",
$fault: "client",
...opts,
});
Object.setPrototypeOf(this, ObjectAlreadyInActiveTierError.prototype);
}
}