Files
klz-cables.com/.pnpm-store/v10/files/66/4a030f48a2e726f911cd43a93b5c41a1e2a3e267bedc194e3575cc4194b462e510418a54c7b83488b196f0851be4c0730d1f9ba2c12afa0663206e457da9f6
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
268 B
Plaintext

import { APIError } from './APIError.js';
export class DuplicateCollection extends APIError {
constructor(propertyName, duplicate){
super(`Collection ${propertyName} already in use: "${duplicate}"`);
}
}
//# sourceMappingURL=DuplicateCollection.js.map