I have a try catch block like this:
try {
... do some real good stuff ...
} catch (e) {
plugins.dialogs.showErrorDialog( "ERROR CAUGHT", "Exception: " + e.message + " debug_code=" + debug_code, "OK");
}
The parser gives this warning:
"The property message is undefined in e "
How does one add a JSDoc tag? (before the catch(e)?)
For example:
/** @type { e.message: <some Rhino object?>} */