Package javax.portlet
Class PortletSecurityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.portlet.PortletException
javax.portlet.PortletSecurityException
- All Implemented Interfaces:
Serializable
A portlet should throw a
Additionally it can be thrown by the portal/portlet-container.
PortletSecurityException when a call fails because of security reasons.Additionally it can be thrown by the portal/portlet-container.
- Version:
- $Revision: 5441 $
- Author:
- Julien Viet
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new security exception with the given text.PortletSecurityException(String text, Throwable cause) Constructs a new portlet security exception when the portlet needs to do the following: throw an exceptioninclude a message about the "root cause" that interfered with its normal operationinclude a description messageConstructs a new portlet security exception when the portlet needs to throw an exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PortletSecurityException
Constructs a new security exception with the given text. The portlet container may use the text write it to a log.- Parameters:
text- the exception text
-
PortletSecurityException
Constructs a new portlet security 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 textcause- the root cause
-
PortletSecurityException
Constructs a new portlet security 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
-