Rocky_Mountain_Vending/.pnpm-store/v10/files/30/f39e865a274a748cdcd46f4ae2a5445f3e49d67c4dd6926e903a064953bafa55014219f8c8e5247c9c309afecf03d18e1880e5ea0a62c92c2e62245efa5a38
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

15 lines
437 B
Text

import { Schema } from "./Schema";
import { StructureSchema } from "./StructureSchema";
export class ErrorSchema extends StructureSchema {
static symbol = Symbol.for("@smithy/err");
ctor;
symbol = ErrorSchema.symbol;
}
export const error = (namespace, name, traits, memberNames, memberList, ctor) => Schema.assign(new ErrorSchema(), {
name,
namespace,
traits,
memberNames,
memberList,
ctor: null,
});