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>
22 lines
479 B
Text
22 lines
479 B
Text
module.exports = class OSError extends Error {
|
|
constructor(msg, code, fn = OSError) {
|
|
super(`${code}: ${msg}`)
|
|
this.code = code
|
|
|
|
if (Error.captureStackTrace) {
|
|
Error.captureStackTrace(this, fn)
|
|
}
|
|
}
|
|
|
|
get name() {
|
|
return 'OSError'
|
|
}
|
|
|
|
static UNKNOWN_SIGNAL(msg) {
|
|
return new OSError(msg, 'UNKNOWN_SIGNAL', OSError.UNKNOWN_SIGNAL)
|
|
}
|
|
|
|
static TITLE_OVERFLOW(msg) {
|
|
return new OSError(msg, 'TITLE_OVERFLOW', OSError.TITLE_OVERFLOW)
|
|
}
|
|
}
|