changeset 327:466a2440ed59

Use description parameter when creating a LaunchException.
author Danesh Dadachanji <ddadacha@redhat.com>
date Wed, 01 Feb 2012 13:09:44 -0500
parents 54cbfb3a5469
children 1b11cb5cd396
files ChangeLog netx/net/sourceforge/jnlp/LaunchException.java
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Feb 01 18:46:57 2012 +0100
+++ b/ChangeLog	Wed Feb 01 13:09:44 2012 -0500
@@ -1,3 +1,8 @@
+2012-02-01  Danesh Dadachanji  <ddadacha@redhat.com>
+
+	* netx/net/sourceforge/jnlp/LaunchException.java: Add description 
+	parameter to the message the exception stores.
+
 2012-02-01 Jiri Vanek<jvanek@redhat.com>
 
 	Fix for PR844
--- a/netx/net/sourceforge/jnlp/LaunchException.java	Wed Feb 01 18:46:57 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;