Files
klz-cables.com/.pnpm-store/v10/files/7f/565dbf5268650855bef1b2de4514d8c3393a55205ee95e17bb4a337023f7027f731da49a5d17a00efacbf3ec2509ac21f66a3eca32ccf491787a8c327ec555
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

9 lines
292 B
Plaintext

import { status as httpStatus } from 'http-status';
import { APIError } from './APIError.js';
export class InvalidSchema extends APIError {
constructor(message, results){
super(message, httpStatus.INTERNAL_SERVER_ERROR, results);
}
}
//# sourceMappingURL=InvalidSchema.js.map