KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > format > template > BuildException


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9
10 package org.jboss.portal.format.template;
11
12 import org.jboss.util.NestedException;
13
14 /**
15  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
16  * @version $Revision: 1.1.1.1 $
17  */

18 public class BuildException
19    extends NestedException
20 {
21
22    public BuildException()
23    {
24    }
25
26    public BuildException(String JavaDoc message)
27    {
28       super(message);
29    }
30
31    public BuildException(Exception JavaDoc nested)
32    {
33       super(nested);
34    }
35
36    public BuildException(String JavaDoc message, Exception JavaDoc nested)
37    {
38       super(message, nested);
39    }
40 }
41
Popular Tags