KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > portlet > PortletInitializationException


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.portlet;
10
11 /**
12  * This exception is thrown when the portlet has thrown an exception during its <code>init()</code> invocation.
13  *
14  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
15  * @version $Revision: 1.1 $
16  */

17 public class PortletInitializationException extends Exception JavaDoc
18 {
19    public PortletInitializationException(Throwable JavaDoc cause)
20    {
21       super(cause);
22    }
23
24    public PortletInitializationException(String JavaDoc message, Throwable JavaDoc cause)
25    {
26       super(message, cause);
27    }
28 }
29
Popular Tags