Files
klz-cables.com/.pnpm-store/v10/files/3e/909468353468865dd553261eb4bb55a3157fa03bc37df483fcd30c302ed2bc19e6b6287f9028e4dbfccc2c330313b5a3025c186d7b666c0ec93a617cc1d5ef
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

8 lines
303 B
Plaintext

import { APIError } from './APIError.js';
export class DuplicateFieldName extends APIError {
constructor(fieldName){
super(`A field with the name '${fieldName}' was found multiple times on the same level. Field names must be unique.`);
}
}
//# sourceMappingURL=DuplicateFieldName.js.map