Files
klz-cables.com/.pnpm-store/v10/files/c5/639225565355511b2231ad6d92959b13d27ae4dbff9f687d06e6a5029139bd0493dbf4306ce203c31f0b99970e30ef782868acff74be0567e613c1b8629a5b
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
254 B
Plaintext

import { APIError } from './APIError.js';
export class ReservedFieldName extends APIError {
constructor(field, fieldName){
super(`Field ${field.label} has reserved name '${fieldName}'.`);
}
}
//# sourceMappingURL=ReservedFieldName.js.map