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

Improve error reporting

üst 92a1757f
......@@ -800,9 +800,9 @@ public class ServiceManager implements XMultiServiceFactory,
return enumeration.nextElement();
} catch (java.util.NoSuchElementException e) {
com.sun.star.container.NoSuchElementException ex =
new com.sun.star.container.NoSuchElementException();
ex.fillInStackTrace();
new com.sun.star.container.NoSuchElementException(
e.toString());
ex.initCause(e);
throw ex;
}
}
......
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