com.ibm.itim.dataservices.model
Class PartialResultsException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.ibm.itim.exception.ITIMException
|
+--com.ibm.itim.dataservices.model.ModelException
|
+--com.ibm.itim.dataservices.model.SearchResultsException
|
+--com.ibm.itim.dataservices.model.PartialResultsException
- All Implemented Interfaces:
- java.io.Serializable
- public class PartialResultsException
- extends SearchResultsException
PartialResultsException is an exception class used for errors that
arise that result in only a portion of a data model request being
completed. This is most often used when a search only returns a portion
of its results due to size limit restrictions.
- Author:
- Tony Gullotta
- See Also:
- Serialized Form
Fields inherited from class com.ibm.itim.dataservices.model.ModelException |
ATTR_IN_USE, CREATE_ERROR, DUPLICATE_ENTRY, INVALID_ARG, INVALID_ATTRIBUTES, INVALID_CATEGORY, INVALID_DN, JNDI_OPERATION_ERROR, OBJECT_NOT_FOUND, PROFILE_NOT_FOUND, RELATIONSHIP_NOT_FOUND, REMOVE_ERROR, SERVER_NOT_AVAILABLE |
Constructor Summary |
PartialResultsException(java.lang.String message)
Constructs an PartialResultsException with a message. |
PartialResultsException(java.lang.String msg,
java.lang.Throwable cause)
Constructs an PartialResultsException with a message and original exception. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
PartialResultsException
public PartialResultsException(java.lang.String message)
- Constructs an PartialResultsException with a message.
- Parameters:
message
- String holding a descriptive message about the exception.
PartialResultsException
public PartialResultsException(java.lang.String msg,
java.lang.Throwable cause)
- Constructs an PartialResultsException with a message and original exception.
- Parameters:
message
- String holding a descriptive message about the exception.originalException
- The original exception that caused the problem.