Rocky_Mountain_Vending/.pnpm-store/v10/files/63/712347dad6bc1630901cb6222e86ef9660fa61dad2f2ecf2ec3b09a991f33c006d6f02172aa9a748a6a9cea74f5fec40d250bd63bba4ee93c5762d1665fa5a
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

8 lines
289 B
Text

import { ProviderError } from "./ProviderError";
export class TokenProviderError extends ProviderError {
name = "TokenProviderError";
constructor(message, options = true) {
super(message, options);
Object.setPrototypeOf(this, TokenProviderError.prototype);
}
}