UNPKG

@r1tsu/payload

Version:

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