bpms_site/.svn/pristine/92/92bc824f430e373c58254ccba35c7c8fdc81ea1a.svn-base
2025-11-02 16:38:49 +03:30

13 lines
377 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.nextFontError = void 0;
/**
* Throw NextFontError error. Used by the WellKnownErrorsPlugin to format errors thrown by next/font.
*/
function nextFontError(message) {
const err = new Error(message);
err.name = 'NextFontError';
throw err;
}
exports.nextFontError = nextFontError;