站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBOSS Portal 2.4 API 英文版文档

PortletModeException - JBOSS Portal 2.4 API 英文版文档


javax.portlet
Class PortletModeException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjavax.portlet.PortletException
              extended byjavax.portlet.PortletModeException
All Implemented Interfaces:
java.io.Serializable

public class PortletModeException
extends PortletException

The PortletModeException is thrown when a portlet tries to use or set a portlet mode that is not supported by the current runtime environment or the portlet. s *

See Also:
Serialized Form

Constructor Summary
PortletModeException(java.lang.String text, PortletMode mode)
          Constructs a new portlet mode exception with the given text and the portlet mode that caused this exception.
PortletModeException(java.lang.String text, java.lang.Throwable cause, PortletMode mode)
          Constructs a new portlet mode 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 include the portlet mode that caused this exception
PortletModeException(java.lang.Throwable cause, PortletMode mode)
          Constructs a new portlet mode exception when the portlet needs to throw an exception.
 
Method Summary
 PortletMode getMode()
          Returns the unsupported portlet mode causing this exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PortletModeException

public PortletModeException(java.lang.String text,
                            PortletMode mode)
Constructs a new portlet mode exception with the given text and the portlet mode that caused this exception. The portlet container may use the text and portlet mode write it to a log.

Parameters:
text - the exception text
mode - the mode causing the exception

PortletModeException

public PortletModeException(java.lang.String text,
                            java.lang.Throwable cause,
                            PortletMode mode)
Constructs a new portlet mode 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
  • include the portlet mode that caused this exception

Parameters:
text - the exception text
cause - the root cause
mode - the mode causing the exception

PortletModeException

public PortletModeException(java.lang.Throwable cause,
                            PortletMode mode)
Constructs a new portlet mode exception when the portlet needs to throw an exception. The exception message is based on the localized message of the underlying exception and the portlet mode that caused this exception.

Parameters:
cause - the root cause
mode - the mode causing the exception
Method Detail

getMode

public PortletMode getMode()
Returns the unsupported portlet mode causing this exception.

Returns:
the portlet mode that caused this exception