Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/a2fda0d5c63a53687340129702a50fd8665a13048a83447c6f4b06e2a8e553b95a742415d6bcaa6835c0ae4be148fc3395e75f009252eed88ac7ad01e5f9d6
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

25 lines
643 B
Text

/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* An extension of Error that includes any stdout or stderr from a child
* process. Based on the error thrown by `child_process.exec()`.
* https://github.com/nodejs/node/blob/3aeae8d81b7b78668c37f7a07a72d94781126d49/lib/child_process.js#L150-L176
*/
class ChildProcessError extends Error {
/**
* @param {string} message
* @param {string=} stdout
* @param {string=} stderr
*/
constructor(message, stdout = '', stderr = '') {
super(message);
this.stdout = stdout;
this.stderr = stderr;
}
}
export {ChildProcessError};