Rocky_Mountain_Vending/.pnpm-store/v10/files/9d/de227601722b0ea3294b68b6b20ede3d66dc7cbbea35fc0d0dfabec4db600d37e14cee7ba4368872afcab43735adb7d6496272ac3ecd400d495112b5f85c31
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
307 B
Text

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