PREV CLASS
NEXT CLASS
com.ibm.portal.state.exceptions
Class PortletPreProcessorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.portal.state.exceptions.StateException
com.ibm.portal.state.exceptions.PortletPreProcessorException
- All Implemented Interfaces:
- Localized, java.io.Serializable
-
public abstract class PortletPreProcessorException
- extends StateException
Exception representing the error case that a PortletPreProcessor
cannot perform its task properly. Should be sub-classed by specific
preprocessor exceptions.
- Since:
- 6.1.0.3
- See Also:
- Serialized Form
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 |
processor
protected final PortletPreProcessor processor
- Preprocessor that caused the exception
PortletPreProcessorException
public PortletPreProcessorException(PortletPreProcessor aProcessor)
- Initializes the exception with the preprocessor the error occurred in.
- Parameters:
- aProcessor - PortletPreProcessor that caused the exception. Must not be
null.
PortletPreProcessorException
public PortletPreProcessorException(PortletPreProcessor aProcessor,
java.lang.Throwable aCause)
- Initializes the exception with the preprocessor the error occurred in.
- Parameters:
- aProcessor - PortletPreProcessor that caused the exception. Must not be
null.
- aCause - The root cause of the exception. Must not be null
.
getPreProcessor
public PortletPreProcessor getPreProcessor()
- Returns the preprocessor that threw the exception.
PREV CLASS
NEXT CLASS