Kaydet (Commit) 3d54a104 authored tarafından Samuel Mehrbrodt's avatar Samuel Mehrbrodt

Beanshell: Display full exception message

Useful to see where exactly the error occured

Change-Id: I716f54c4b1286d705b52f19a58f36f28a801e1d0
Reviewed-on: https://gerrit.libreoffice.org/69799Reviewed-by: 's avatarSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: 's avatarSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
üst 3c72945d
......@@ -398,7 +398,7 @@ public class ScriptEditorForBeanShell implements ScriptEditor, ActionListener {
try {
execute();
} catch (Exception invokeException) {
showErrorMessage(invokeException.getMessage());
showErrorMessage(invokeException.toString());
}
} else if (actionCommand.equals("Save")) {
saveTextArea();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment