Files
klz-cables.com/.pnpm-store/v10/files/22/02c2cb03879d1b460c944db39cd9dea4df78aeb7279c702d4b29f8d7cc44fff05d62e96cb48daa4a671009afc0774e2fb8ea16dd19523c7118586e54512b10
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

13 lines
456 B
Plaintext

import { status as httpStatus } from 'http-status';
import { APIError } from './APIError.js';
export class FileRetrievalError extends APIError {
constructor(t, message){
let msg = t ? t('error:problemUploadingFile') : 'There was a problem while retrieving the file.';
if (message) {
msg += ` ${message}`;
}
super(msg, httpStatus.INTERNAL_SERVER_ERROR);
}
}
//# sourceMappingURL=FileRetrievalError.js.map