com.google.appengine.api.search
Class AddDocumentsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.google.appengine.api.search.SearchBaseException
com.google.appengine.api.search.AddDocumentsException
- All Implemented Interfaces:
- java.io.Serializable
public class AddDocumentsException
- extends SearchBaseException
Thrown to indicate that a search service failure occurred while adding
documents to the index.
- See Also:
- Serialized Form
Constructor Summary |
AddDocumentsException(OperationResult operationResult)
Constructs an exception when some error occurred in
the search service when adding some documents to the index. |
AddDocumentsException(OperationResult operationResult,
java.util.List<OperationResult> results,
java.util.List<java.lang.String> documentIds)
Constructs an exception when some error occurred in
the search service when adding some documents to the index. |
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 |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
AddDocumentsException
public AddDocumentsException(OperationResult operationResult)
- Constructs an exception when some error occurred in
the search service when adding some documents to the index.
- Parameters:
operationResult
- the error code and message detail associated with
the failure
AddDocumentsException
public AddDocumentsException(OperationResult operationResult,
java.util.List<OperationResult> results,
java.util.List<java.lang.String> documentIds)
- Constructs an exception when some error occurred in
the search service when adding some documents to the index.
- Parameters:
operationResult
- the error code and message detail associated with
the failureresults
- the list of OperationResult
where each result is
associated with a document that was requested to be added to the indexdocumentIds
- the list of Ids of Document
requested to be
added to the index. The search service may provide an Id if none was given
for a Document
getResults
public java.util.List<OperationResult> getResults()
- Returns:
- the list of
OperationResult
where each result is
associated with a document that was requested to be added to the index
getDocumentIds
public java.util.List<java.lang.String> getDocumentIds()
- Returns:
- the list of Ids of documents that were requested to be added to
the index