Rocky_Mountain_Vending/.pnpm-store/v10/files/cb/df02294d8dffa12a1d6d0943552fd26d8b8f936f9a412b0c0a27745947c55ed8368f875f9a19534fe1ba9024c7e2e3bc6a7f98d2c4aa6d8d1b343e773ce32f
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

14 lines
No EOL
653 B
Text

const USE_CACHE_TIMEOUT_ERROR_CODE = 'USE_CACHE_TIMEOUT';
export class UseCacheTimeoutError extends Error {
constructor(){
super('Filling a cache during prerender timed out, likely because request-specific arguments such as params, searchParams, cookies() or dynamic data were used inside "use cache".'), this.digest = USE_CACHE_TIMEOUT_ERROR_CODE;
}
}
export function isUseCacheTimeoutError(err) {
if (typeof err !== 'object' || err === null || !('digest' in err) || typeof err.digest !== 'string') {
return false;
}
return err.digest === USE_CACHE_TIMEOUT_ERROR_CODE;
}
//# sourceMappingURL=use-cache-errors.js.map