📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-29 18:34:32
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
orkofarms.com
/
18
/
lib
/
node_modules
/
jsdoc
/
lib
/
jsdoc
/
util
📍 /home/orkouolp/nodevenv/node_js/orkofarms.com/18/lib/node_modules/jsdoc/lib/jsdoc/util
🔄 Refresh
✏️
Editing: error.js
Writable
/** * Helper functions for handling errors. * * @deprecated As of JSDoc 3.3.0. This module may be removed in a future release. Use the module * {@link module:jsdoc/util/logger} to log warnings and errors. * @module jsdoc/util/error */ /** * Log an exception as an error. * * Prior to JSDoc 3.3.0, this method would either log the exception (if lenient mode was enabled) or * re-throw the exception (default). * * In JSDoc 3.3.0 and later, lenient mode has been replaced with strict mode, which is disabled by * default. If strict mode is enabled, calling the `handle` method causes JSDoc to exit immediately, * just as if the exception had been re-thrown. * * @deprecated As of JSDoc 3.3.0. This module may be removed in a future release. * @param {Error} e - The exception to log. * @memberof module:jsdoc/util/error */ exports.handle = e => { const logger = require('jsdoc/util/logger'); let msg = e ? ( e.message || JSON.stringify(e) ) : ''; // include the error type if it's an Error object if (e instanceof Error) { msg = `${e.name}: ${msg}`; } logger.error(msg); };
💾 Save Changes
❌ Cancel