KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > setup > pm > PersistenceException


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.pm;
10
11 import org.jboss.portal.setup.PortalSetupException;
12
13 /**
14  * @author <a HREF="mailto:palber@novell.com">Polina Alber</a>
15  * Date: Apr 25, 2005; Time: 4:03:51 PM
16  * @since JBoss portal 2.0
17  * Class org.jboss.portal.setup.pm.PersistenceException
18  */

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

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

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

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

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