Files
klz-cables.com/.pnpm-store/v10/files/a1/6672eccb1ba8c4dd84ed4def210edf145441611acd1ab1b776d1bfdc1ea2422ebd1e5cf2a6809259f1880441af322c678037159f2041d71842290137d81784
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

7 lines
250 B
Plaintext

import type IntlErrorCode from './IntlErrorCode.js';
export default class IntlError extends Error {
readonly code: IntlErrorCode;
readonly originalMessage: string | undefined;
constructor(code: IntlErrorCode, originalMessage?: string);
}