Rocky_Mountain_Vending/.pnpm-store/v10/files/57/839042068c687c32efd8edd392425ed94151689bb1fcb92a3f228586547830490a259620ae730fe79d608e99ad2c32965ec5aa66ad5f3f79faac4a3256a6a8
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

10 lines
280 B
Text

/**
* Error subclass to use when the source does not exist at the specified endpoint.
*
* @param {String} message optional "message" property to set
* @api protected
*/
export default class NotFoundError extends Error {
code: string;
constructor(message?: string);
}