File size: 242 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
/**
* Throw NextFontError error. Used by the WellKnownErrorsPlugin to format errors thrown by next/font.
*/
export function nextFontError(message: string): never {
const err = new Error(message)
err.name = 'NextFontError'
throw err
}
|