Files
klz-cables.com/.pnpm-store/v10/files/18/bc9c5620b4ff13a42ece915d70cd05db3f4e477cd69a027f609bb19e91c06babd288ef8e7e8e81a9d9a208e8e9257bf933dc4b15af6c9549680cba6f411106
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
317 B
Plaintext

import { APIError } from './APIError.js';
export class InvalidFieldName extends APIError {
constructor(field, fieldName){
super(`Field ${field.label} has invalid name '${fieldName}'. Field names can not include periods (.) and must be alphanumeric.`);
}
}
//# sourceMappingURL=InvalidFieldName.js.map