Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/esm/client/components/not-found.js
2022-12-27 12:05:56 +01:00

9 lines
281 B
JavaScript

export const NOT_FOUND_ERROR_CODE = 'NEXT_NOT_FOUND';
export function notFound() {
// eslint-disable-next-line no-throw-literal
const error = new Error(NOT_FOUND_ERROR_CODE);
error.digest = NOT_FOUND_ERROR_CODE;
throw error;
}
//# sourceMappingURL=not-found.js.map