Package javax.portlet
Class WindowStateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.portlet.PortletException
-
- javax.portlet.WindowStateException
-
- All Implemented Interfaces:
java.io.Serializable
public class WindowStateException extends PortletException
TheWindowStateException
is thrown when a portlet tries to use a window state that is not supported by the current runtime environment or the portlet.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private WindowState
_state
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description WindowStateException(java.lang.String text, java.lang.Throwable cause, WindowState state)
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 WindowStateException(java.lang.String text, WindowState state)
Constructs a new portlet state exception with the given text.WindowStateException(java.lang.Throwable cause, WindowState state)
Constructs a new portlet state exception when the portlet needs to throw an exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WindowState
getState()
Returns the portlet state causing this exception.
-
-
-
Field Detail
-
_state
private transient WindowState _state
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
WindowStateException
public WindowStateException(java.lang.String text, WindowState state)
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 textstate
- the state causing the exception
-
WindowStateException
public WindowStateException(java.lang.String text, java.lang.Throwable cause, WindowState state)
Constructs a new portlet state exception when the portlet needs to do the following:- include a message about the "root cause" that interfered with its normal operation
- include a description message
throw an exception - Parameters:
text
- the exception textcause
- the root causestate
- the state causing the exception
-
WindowStateException
public WindowStateException(java.lang.Throwable cause, WindowState state)
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 causestate
- the state causing the exception
-
-
Method Detail
-
getState
public WindowState getState()
Returns the portlet state causing this exception.- Returns:
- the window state causing this exception
-
-