changeset in /hg/icedtea6: 2009-05-25 Omair Majid <omajid at redh...

Omair Majid omajid at redhat.com
Mon May 25 10:54:14 PDT 2009


changeset 9293bf2e49a9 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=9293bf2e49a9
description:
	2009-05-25  Omair Majid  <omajid at redhat.com>

	    * rt/net/sourceforge/jnlp/resources/Messages.properties: Add
	    RUnexpected to show generic unexpected information.
	    * rt/net/sourceforge/jnlp/runtime/Boot.java (run): Show more
	    information about the fatal exception.

diffstat:

3 files changed, 10 insertions(+), 1 deletion(-)
ChangeLog                                             |    7 +++++++
rt/net/sourceforge/jnlp/resources/Messages.properties |    1 +
rt/net/sourceforge/jnlp/runtime/Boot.java             |    3 ++-

diffs (38 lines):

diff -r 4501bcea5ffd -r 9293bf2e49a9 ChangeLog
--- a/ChangeLog	Mon May 25 12:40:45 2009 +0200
+++ b/ChangeLog	Mon May 25 13:54:44 2009 -0400
@@ -1,3 +1,10 @@ 2009-05-25  Xerxes RÃ¥nby  <xerxes at zafen
+2009-05-25  Omair Majid  <omajid at redhat.com>
+
+	* rt/net/sourceforge/jnlp/resources/Messages.properties: Add
+	RUnexpected to show generic unexpected information.
+	* rt/net/sourceforge/jnlp/runtime/Boot.java (run): Show more
+	information about the fatal exception.
+
 2009-05-25  Xerxes RÃ¥nby  <xerxes at zafena.se>
 
 	* acinclude.m4: Fix: Renamed TARGET_ARCH to CROSS_TARGET_ARCH
diff -r 4501bcea5ffd -r 9293bf2e49a9 rt/net/sourceforge/jnlp/resources/Messages.properties
--- a/rt/net/sourceforge/jnlp/resources/Messages.properties	Mon May 25 12:40:45 2009 +0200
+++ b/rt/net/sourceforge/jnlp/resources/Messages.properties	Mon May 25 13:54:44 2009 -0400
@@ -105,6 +105,7 @@ RCantReplaceSM=Changing the SecurityMana
 RCantReplaceSM=Changing the SecurityManager is not allowed.
 RDenyStopped=Stopped applications have no permissions.
 RExitNoApp=Can not exit the JVM because the current application cannot be determined.
+RUnexpected=Unexpected {0} at {1}
 
 # Boot options, message should be shorter than this ---------------->
 BOUsage=javaws [-run-options] <jnlp file>
diff -r 4501bcea5ffd -r 9293bf2e49a9 rt/net/sourceforge/jnlp/runtime/Boot.java
--- a/rt/net/sourceforge/jnlp/runtime/Boot.java	Mon May 25 12:40:45 2009 +0200
+++ b/rt/net/sourceforge/jnlp/runtime/Boot.java	Mon May 25 13:54:44 2009 -0400
@@ -209,7 +209,8 @@ public final class Boot implements Privi
             if (JNLPRuntime.isDebug())
                 ex.printStackTrace();
 
-            fatalError(ex.getMessage());
+            fatalError(JNLPRuntime.getMessage("RUnexpected", 
+                        new Object[] {ex.toString(), ex.getStackTrace()[0]} ));
         }
 
         return null;



More information about the distro-pkg-dev mailing list