/hg/icedtea-web: Use description parameter when creating a Launc...
ddadacha at icedtea.classpath.org
ddadacha at icedtea.classpath.org
Wed Feb 1 10:12:38 PST 2012
changeset f55a6ef1c342 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=f55a6ef1c342
author: Danesh Dadachanji <ddadacha at redhat.com>
date: Wed Feb 01 13:09:44 2012 -0500
Use description parameter when creating a LaunchException.
diffstat:
ChangeLog | 5 +++++
netx/net/sourceforge/jnlp/LaunchException.java | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diffs (24 lines):
diff -r 07621545e942 -r f55a6ef1c342 ChangeLog
--- a/ChangeLog Wed Feb 01 18:59:24 2012 +0100
+++ b/ChangeLog Wed Feb 01 13:09:44 2012 -0500
@@ -1,3 +1,8 @@
+2012-02-01 Danesh Dadachanji <ddadacha at redhat.com>
+
+ * netx/net/sourceforge/jnlp/LaunchException.java: Add description
+ parameter to the message the exception stores.
+
2012-02-01 Jiri Vanek<jvanek at redhat.com>
Fix for PR844
diff -r 07621545e942 -r f55a6ef1c342 netx/net/sourceforge/jnlp/LaunchException.java
--- a/netx/net/sourceforge/jnlp/LaunchException.java Wed Feb 01 18:59:24 2012 +0100
+++ b/netx/net/sourceforge/jnlp/LaunchException.java Wed Feb 01 13:09:44 2012 -0500
@@ -52,7 +52,7 @@
* Creates a LaunchException without detail message.
*/
public LaunchException(JNLPFile file, Exception cause, String severity, String category, String summary, String description) {
- super(severity + ": " + category + ": " + summary);
+ super(severity + ": " + category + ": " + summary + " " + description);
this.file = file;
this.category = category;
More information about the distro-pkg-dev
mailing list