KickJava   Java API By Example, From Geeks To Geeks.

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


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@sourceforge.net">Polina Alber</a>
13  * Date: Apr 7, 2005; Time: 5:58:48 PM
14  * @since Spitfire
15  * Class org.jboss.portal.setup.PortalSetupException is a base exception
16  * that can be thrown during service runtime operations
17  */

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

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

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

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

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