Files
klz-cables.com/.pnpm-store/v10/files/07/97dbe2c128420b2dba20de89683a8133f49baa274b3866a1e6cdf9b69267c62361d83a80367e225cbd50d1c6b6461cdd5355995847706a8a5e076424f61d64
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
384 B
Plaintext

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