Rocky_Mountain_Vending/.pnpm-store/v10/files/d8/c989f7e60b03cd37ab09023547fecefa9a106f8f81accb4bc1e878c2836b09aed926b8058a323036db984b88aff1d80c388536f6d32a0e69020e3f64bc6897
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

31 lines
1.1 KiB
Text

import { ProviderErrorOptionsType } from "./ProviderError";
import { ProviderError } from "./ProviderError";
/**
* @public
*
* An error representing a failure of an individual credential provider.
*
* This error class has special meaning to the {@link chain} method. If a
* provider in the chain is rejected with an error, the chain will only proceed
* to the next provider if the value of the `tryNextLink` property on the error
* is truthy. This allows individual providers to halt the chain and also
* ensures the chain will stop if an entirely unexpected error is encountered.
*/
export declare class CredentialsProviderError extends ProviderError {
name: string;
/**
* @override
* @deprecated constructor should be given a logger.
*/
constructor(message: string);
/**
* @override
* @deprecated constructor should be given a logger.
*/
constructor(message: string, tryNextLink: boolean | undefined);
/**
* @override
* This signature is preferred for logging capability.
*/
constructor(message: string, options: ProviderErrorOptionsType);
}