Files
klz-cables.com/.pnpm-store/v10/files/d6/0d488afa4517909b9a24da6059c2e67fb18c822e135977eabdd8ed3a6628bfbdc677b9cca7767b97f5f23c6568a4be0ebe0064e9c14d5f2d19641dd1269bc2
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

10 lines
393 B
Plaintext

import { en } from '@payloadcms/translations/languages/en';
import { status as httpStatus } from 'http-status';
import { APIError } from './APIError.js';
export class ErrorDeletingFile extends APIError {
constructor(t){
super(t ? t('error:deletingFile') : en.translations.error.deletingFile, httpStatus.INTERNAL_SERVER_ERROR);
}
}
//# sourceMappingURL=ErrorDeletingFile.js.map