KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > common > context > 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.common.context;
11
12 /**
13  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
14  * @version $Revision: 1.2 $
15  */

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