javacommons/utils/javasrc/com/nokia/mj/impl/utils/DebugUtils.java
changeset 80 d6dafc5d983f
parent 72 1f0034e370aa
--- a/javacommons/utils/javasrc/com/nokia/mj/impl/utils/DebugUtils.java	Mon Oct 04 11:29:25 2010 +0300
+++ b/javacommons/utils/javasrc/com/nokia/mj/impl/utils/DebugUtils.java	Fri Oct 15 12:29:39 2010 +0300
@@ -34,10 +34,12 @@
             Jvm.loadSystemLibrary("javautils");
         }
 
-        catch (Exception e)
+        catch (Throwable t)
         {
-            Logger.ELOG(Logger.EUtils, "Error loading debug utils native.",
-                        e);
+            String errStr = "Error loading debug utils native. ";
+            Logger.ELOG(Logger.EUtils, errStr,
+                        t);
+            throw new RuntimeException(errStr);
         }
     }