Kaydet (Commit) 59a63d81 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

In Java, css.uno.RuntimeException doesn't derive from css.uno.Exception

Change-Id: I83850db6e3f3ac87d52e75f122ba2b6bba3905b9
üst aceba1e1
......@@ -359,7 +359,7 @@ public abstract class ScriptProvider implements
throw e2;
} catch (com.sun.star.lang.WrappedTargetException wta) {
// TODO specify the correct error Type
Exception wrapped = (Exception) wta.TargetException;
java.lang.Exception wrapped = (java.lang.Exception) wta.TargetException;
String message = wta.getMessage();
if (wrapped != null) {
......
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