Package javax.portlet
Class ReadOnlyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.portlet.PortletException
javax.portlet.ReadOnlyException
- All Implemented Interfaces:
Serializable
The
ReadOnlyException
is thrown when a portlet tries
to change the value for a read-only preference attribute.- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ReadOnlyException
(String text) Constructs a new read-only exception with the given text.ReadOnlyException
(String text, Throwable cause) Constructs a new read-only 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 ReadOnlyException
(Throwable cause) Constructs a new read-only exception when the portlet needs to throw an exception. -
Method Summary
Methods inherited from class javax.portlet.PortletException
getCause, printStackTrace, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
ReadOnlyException
private ReadOnlyException() -
ReadOnlyException
Constructs a new read-only exception with the given text. The portlet container may use the text write it to a log.- Parameters:
text
- the exception text
-
ReadOnlyException
Constructs a new read-only 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 cause
-
ReadOnlyException
Constructs a new read-only 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
-