aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/terminal/web/UIDLTransformerException.java
diff options
context:
space:
mode:
authorJani Laakso <jani.laakso@itmill.com>2007-04-18 05:32:44 +0000
committerJani Laakso <jani.laakso@itmill.com>2007-04-18 05:32:44 +0000
commit121ae54f709f887c95592b95bdc09977642b8c3b (patch)
tree389925b20e51a24428ae8bb625c651c3d9de6ca8 /src/com/itmill/toolkit/terminal/web/UIDLTransformerException.java
parent76d0a503c56656bafc68d732d245dd2dafe1b55d (diff)
downloadvaadin-framework-121ae54f709f887c95592b95bdc09977642b8c3b.tar.gz
vaadin-framework-121ae54f709f887c95592b95bdc09977642b8c3b.zip
Unified code style (indentation) based on default settings using Eclipse 3.2.
svn changeset:1256/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/terminal/web/UIDLTransformerException.java')
-rw-r--r--src/com/itmill/toolkit/terminal/web/UIDLTransformerException.java69
1 files changed, 39 insertions, 30 deletions
diff --git a/src/com/itmill/toolkit/terminal/web/UIDLTransformerException.java b/src/com/itmill/toolkit/terminal/web/UIDLTransformerException.java
index a974c2f987..2aa9c8b535 100644
--- a/src/com/itmill/toolkit/terminal/web/UIDLTransformerException.java
+++ b/src/com/itmill/toolkit/terminal/web/UIDLTransformerException.java
@@ -1,46 +1,49 @@
/* *************************************************************************
- IT Mill Toolkit
+ IT Mill Toolkit
- Development of Browser User Interfaces Made Easy
+ Development of Browser User Interfaces Made Easy
- Copyright (C) 2000-2006 IT Mill Ltd
-
- *************************************************************************
+ Copyright (C) 2000-2006 IT Mill Ltd
+
+ *************************************************************************
- This product is distributed under commercial license that can be found
- from the product package on license.pdf. Use of this product might
- require purchasing a commercial license from IT Mill Ltd. For guidelines
- on usage, see licensing-guidelines.html
+ This product is distributed under commercial license that can be found
+ from the product package on license.pdf. Use of this product might
+ require purchasing a commercial license from IT Mill Ltd. For guidelines
+ on usage, see licensing-guidelines.html
- *************************************************************************
-
- For more information, contact:
-
- IT Mill Ltd phone: +358 2 4802 7180
- Ruukinkatu 2-4 fax: +358 2 4802 7181
- 20540, Turku email: info@itmill.com
- Finland company www: www.itmill.com
-
- Primary source for information and releases: www.itmill.com
+ *************************************************************************
+
+ For more information, contact:
+
+ IT Mill Ltd phone: +358 2 4802 7180
+ Ruukinkatu 2-4 fax: +358 2 4802 7181
+ 20540, Turku email: info@itmill.com
+ Finland company www: www.itmill.com
+
+ Primary source for information and releases: www.itmill.com
- ********************************************************************** */
+ ********************************************************************** */
package com.itmill.toolkit.terminal.web;
-/**
+/**
* Exception in the transform process.
- *
+ *
* @author IT Mill Ltd.
- * @version @VERSION@
+ * @version
+ * @VERSION@
* @since 3.0
*/
public class UIDLTransformerException extends java.lang.Exception {
private static final long serialVersionUID = 5648982356058143223L;
+
private String HTMLDescription = null;
+
private Throwable transformException = null;
-
+
/**
* Creates a new instance of UIDLTransformerException without detail
* message.
@@ -51,26 +54,32 @@ public class UIDLTransformerException extends java.lang.Exception {
/**
* Constructs an instance of UIDLTransformerException with the specified
* detail message.
- * @param msg the description of exception that occurred.
- * @param te the Transform exception that occurred.
- * @param desc the detailed description.
+ *
+ * @param msg
+ * the description of exception that occurred.
+ * @param te
+ * the Transform exception that occurred.
+ * @param desc
+ * the detailed description.
*/
public UIDLTransformerException(String msg, Throwable te, String desc) {
super(msg);
this.transformException = te;
this.HTMLDescription = desc;
}
-
- /**
+
+ /**
* Returns the detailed description.
+ *
* @return the Detailed description of exception.
*/
public String getHTMLDescription() {
return HTMLDescription;
}
- /**
+ /**
* Returns the nested transform exception that occurred.
+ *
* @return the transform exception
*/
public Throwable getTransformException() {