changeset in /hg/icedtea: 2009-05-25 Omair Majid <omajid at redha...
Omair Majid
omajid at redhat.com
Tue Aug 4 09:07:29 PDT 2009
changeset fa12c4801f74 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=fa12c4801f74
description:
2009-05-25 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/resources/Messages.properties: Add
RUnexpected to show generic unexpected information.
* netx/net/sourceforge/jnlp/runtime/Boot.java (run): Show more
information about the fatal exception.
diffstat:
3 files changed, 10 insertions(+), 1 deletion(-)
ChangeLog | 7 +++++++
netx/net/sourceforge/jnlp/resources/Messages.properties | 1 +
netx/net/sourceforge/jnlp/runtime/Boot.java | 3 ++-
diffs (38 lines):
diff -r 9a93570b7b06 -r fa12c4801f74 ChangeLog
--- a/ChangeLog Fri May 22 10:13:16 2009 -0400
+++ b/ChangeLog Mon May 25 13:54:44 2009 -0400
@@ -1,3 +1,10 @@ 2009-05-22 Omair Majid <omajid at redhat.
+2009-05-25 Omair Majid <omajid at redhat.com>
+
+ * netx/net/sourceforge/jnlp/resources/Messages.properties: Add
+ RUnexpected to show generic unexpected information.
+ * netx/net/sourceforge/jnlp/runtime/Boot.java (run): Show more
+ information about the fatal exception.
+
2009-05-22 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/JNLPFile.java (parse): Fix comment to reflect
diff -r 9a93570b7b06 -r fa12c4801f74 netx/net/sourceforge/jnlp/resources/Messages.properties
--- a/netx/net/sourceforge/jnlp/resources/Messages.properties Fri May 22 10:13:16 2009 -0400
+++ b/netx/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 9a93570b7b06 -r fa12c4801f74 netx/net/sourceforge/jnlp/runtime/Boot.java
--- a/netx/net/sourceforge/jnlp/runtime/Boot.java Fri May 22 10:13:16 2009 -0400
+++ b/netx/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