diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2002-09-02 13:36:28 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2002-09-02 13:36:28 +0000 |
commit | a55732e8d1e281bc6363277b3068080c0ca25ef1 (patch) | |
tree | 9832fa927534df2d78abe0a676885e76b073967c /jurt/com | |
parent | 19f4cb98ebf826a21dae76ca265af31626731165 (diff) |
#102601# caught java.lang.Exception
Diffstat (limited to 'jurt/com')
-rw-r--r-- | jurt/com/sun/star/comp/loader/JavaLoader.java | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/jurt/com/sun/star/comp/loader/JavaLoader.java b/jurt/com/sun/star/comp/loader/JavaLoader.java index 5b3a20a4e80b..a5451b54e3b3 100644 --- a/jurt/com/sun/star/comp/loader/JavaLoader.java +++ b/jurt/com/sun/star/comp/loader/JavaLoader.java @@ -2,9 +2,9 @@ * * $RCSfile: JavaLoader.java,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: dbo $ $Date: 2002-08-13 11:40:32 $ + * last change: $Author: dbo $ $Date: 2002-09-02 14:36:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -106,7 +106,7 @@ import java.net.MalformedURLException; * service. Therefor the <code>JavaLoader</code> activates external UNO components which are implemented in Java. * The loader is used by the <code>ServiceManger</code>. * <p> - * @version $Revision: 1.7 $ $ $Date: 2002-08-13 11:40:32 $ + * @version $Revision: 1.8 $ $ $Date: 2002-09-02 14:36:28 $ * @author Markus Herzog * @see com.sun.star.loader.XImplementationLoader * @see com.sun.star.loader.Java @@ -173,6 +173,10 @@ public class JavaLoader implements XImplementationLoader, { throw new com.sun.star.uno.RuntimeException( exc.getMessage(), this ); } + catch (java.lang.Exception exc) + { + throw new com.sun.star.uno.RuntimeException( exc.getMessage(), this ); + } } return url; } @@ -513,7 +517,7 @@ public class JavaLoader implements XImplementationLoader, * the registration at a registry in a default manner. The class is used by the <code>JavaLoader</code> if the * a component does not comes with its own methods for creating a factory or for the registration. * <p> - * @version $Revision: 1.7 $ $ $Date: 2002-08-13 11:40:32 $ + * @version $Revision: 1.8 $ $ $Date: 2002-09-02 14:36:28 $ * @author Markus Herzog * @since UDK1.0 */ |