diff options
author | Danesh Dadachanji <[email protected]> | 2012-02-01 13:09:44 -0500 |
---|---|---|
committer | Danesh Dadachanji <[email protected]> | 2012-02-01 13:09:44 -0500 |
commit | 9d23c71049b7f3b12fd224fe362a7d1c1f5e31a9 (patch) | |
tree | d754e008a230a5a7e73d976c793ed34d88e25460 /netx/net/sourceforge/jnlp/LaunchException.java | |
parent | 6237d90ca0d3d55db177091939ad2519b7e47958 (diff) |
Use description parameter when creating a LaunchException.
Diffstat (limited to 'netx/net/sourceforge/jnlp/LaunchException.java')
-rw-r--r-- | netx/net/sourceforge/jnlp/LaunchException.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netx/net/sourceforge/jnlp/LaunchException.java b/netx/net/sourceforge/jnlp/LaunchException.java index 9e682df..321d661 100644 --- a/netx/net/sourceforge/jnlp/LaunchException.java +++ b/netx/net/sourceforge/jnlp/LaunchException.java @@ -52,7 +52,7 @@ public class LaunchException extends Exception { * 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; |