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

Improved error reporting

Change-Id: Ifbb44b8d711b82f5d3ca0cd678579e9dcbb44bf2
üst 27482e86
......@@ -428,7 +428,10 @@ public class JavaLoader implements XImplementationLoader,
success = ((Boolean) oRet).booleanValue();
}
catch (Exception e) {
throw new CannotRegisterImplementationException( e.getMessage());
CannotRegisterImplementationException e2 =
new CannotRegisterImplementationException(e.toString());
e2.initCause(e);
throw e2;
}
return success;
......
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