| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception org.apache.pluto.PortletContainerException
PortletContainerException | public class PortletContainerException extends Exception (Code) | | Thrown when an internal portlet container exception occurs within Pluto.
This type of exception indicates an error from which the container is not
able to recover.
version: 1.0 |
PortletContainerException | public PortletContainerException()(Code) | | Constructs a new PortletContainerException.
This exception will have no message and no root cause.
|
PortletContainerException | public PortletContainerException(String text)(Code) | | Constructs a new PortletContainerException with the given message.
Parameters: text - the message explaining the exception occurance |
PortletContainerException | public PortletContainerException(String text, Throwable cause)(Code) | | Constructs a new PortletContainerException with the given message and
root cause.
Parameters: text - the message explaining the exception occurance Parameters: cause - the root cause of the is exception |
PortletContainerException | public PortletContainerException(Throwable cause)(Code) | | Constructs a new portlet invoker exception when the portlet needs to
throw an exception. The exception's message is based on the localized
message of the underlying exception.
Parameters: cause - the root cause |
getRootCause | public Throwable getRootCause()(Code) | | Returns the exception that cause this portlet exception.
the Throwable that caused this portlet exception. |
|
|
|