summaryrefslogtreecommitdiff
path: root/jurt/com/sun/star/comp/loader/FactoryHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'jurt/com/sun/star/comp/loader/FactoryHelper.java')
-rw-r--r--jurt/com/sun/star/comp/loader/FactoryHelper.java14
1 files changed, 6 insertions, 8 deletions
diff --git a/jurt/com/sun/star/comp/loader/FactoryHelper.java b/jurt/com/sun/star/comp/loader/FactoryHelper.java
index 92b480174769..3fdbac487180 100644
--- a/jurt/com/sun/star/comp/loader/FactoryHelper.java
+++ b/jurt/com/sun/star/comp/loader/FactoryHelper.java
@@ -29,9 +29,7 @@ import com.sun.star.lang.XServiceInfo;
import com.sun.star.lang.XSingleServiceFactory;
import com.sun.star.lang.XSingleComponentFactory;
import com.sun.star.lang.XTypeProvider;
-
import com.sun.star.registry.XRegistryKey;
-
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.Type;
@@ -207,11 +205,11 @@ public class FactoryHelper {
else if (targetException instanceof com.sun.star.uno.RuntimeException)
throw (com.sun.star.uno.RuntimeException)targetException;
else
- throw new com.sun.star.uno.Exception( targetException.toString() );
+ throw new com.sun.star.uno.Exception( targetException );
} catch (IllegalAccessException illegalAccessException) {
- throw new com.sun.star.uno.Exception( illegalAccessException.toString() );
+ throw new com.sun.star.uno.Exception( illegalAccessException );
} catch (InstantiationException instantiationException) {
- throw new com.sun.star.uno.Exception( instantiationException.toString() );
+ throw new com.sun.star.uno.Exception( instantiationException );
}
}
@@ -283,11 +281,11 @@ public class FactoryHelper {
else if (targetException instanceof com.sun.star.uno.RuntimeException)
throw (com.sun.star.uno.RuntimeException)targetException;
else
- throw new com.sun.star.uno.Exception( targetException.toString() );
+ throw new com.sun.star.uno.Exception( targetException );
} catch (IllegalAccessException illegalAccessException) {
- throw new com.sun.star.uno.Exception( illegalAccessException.toString() );
+ throw new com.sun.star.uno.Exception( illegalAccessException );
} catch (InstantiationException instantiationException) {
- throw new com.sun.star.uno.Exception( instantiationException.toString() );
+ throw new com.sun.star.uno.Exception( instantiationException );
}
}