javax.portlet
public class: WindowStateException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.portlet.PortletException
javax.portlet.WindowStateException
All Implemented Interfaces:
Serializable
* 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.
Constructor: |
public WindowStateException(String text,
WindowState state) {
super(text);
_state = 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 text
state - the state causing the exception
|
public WindowStateException(Throwable cause,
WindowState state) {
super(cause);
_state = 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 cause
state - the state causing the exception
|
public WindowStateException(String text,
Throwable cause,
WindowState state) {
super(text, cause);
_state = 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
Parameters:
text - the exception text
cause - the root cause
state - the state causing the exception
|
Method from javax.portlet.WindowStateException Summary: |
---|
getState |
Methods from java.lang.Throwable: |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Method from javax.portlet.WindowStateException Detail: |
public WindowState getState() {
return _state;
}
Returns the portlet state causing this exception. |