KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > setup > CmsSetupException


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 package org.jboss.portal.setup;
10
11 /**
12  * @author <a HREF="mailto:palber@novell.com">Polina Alber</a>
13  * Date: Apr 30, 2005; Time: 4:41:58 PM
14  * @since JBoss portal 2.0
15  * Class org.jboss.portal.setup.CmsSetupException
16  */

17 public class CmsSetupException extends PortalSetupException
18 {
19
20    /**
21     * @see Exception#Exception()
22     */

23    public CmsSetupException()
24    {
25       super();
26    }
27
28    /**
29     * @see Exception#Exception(String)
30     */

31    public CmsSetupException(String JavaDoc message)
32    {
33       super(message);
34    }
35
36
37    /**
38     * @see Exception#Exception(Throwable)
39     */

40    public CmsSetupException(Throwable JavaDoc cause)
41    {
42       super(cause);
43    }
44
45    /**
46     * @see Exception#Exception(String,Throwable)
47     */

48    public CmsSetupException(String JavaDoc message, Throwable JavaDoc cause)
49    {
50       super(message, cause);
51    }
52 }
53
Popular Tags