| java.lang.Object java.lang.Throwable java.lang.Exception javax.portlet.PortletException javax.portlet.WindowStateException
WindowStateException | public class WindowStateException extends PortletException (Code) | | The WindowStateException is thrown when a portlet
tries to use a window state that is not supported by the current
runtime environment or the portlet.
|
WindowStateException | public WindowStateException(String text, WindowState state)(Code) | | Constructs a new portlet state exception with the given text. The
portlet container may use the text write it to a log.
Parameters: text - the exception text Parameters: state - the state causing the exception |
WindowStateException | public WindowStateException(String text, Throwable cause, WindowState state)(Code) | | Constructs a new portlet state exception when the portlet needs to do
the following:
throw an exception
- include a message about the "root cause" that interfered
with its normal operation
- include a description message
Parameters: text - the exception text Parameters: cause - the root cause Parameters: state - the state causing the exception |
WindowStateException | public WindowStateException(Throwable cause, WindowState state)(Code) | | Constructs a new portlet state exception when the portlet needs to throw an
exception. The exception message is based on the localized message
of the underlying exception.
Parameters: cause - the root cause Parameters: state - the state causing the exception |
getState | public WindowState getState()(Code) | | Returns the portlet state causing this exception.
the window state causing this exception |
|
|