Class IndexRebuildException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opencastproject.index.rebuild.IndexRebuildException
-
- All Implemented Interfaces:
Serializable
public class IndexRebuildException extends Exception
An exception which indicates an error when rebuilding an ElasticSearch index.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IndexRebuildException(String message)Constructor without Cause.IndexRebuildException(String message, Throwable cause)Full fledged constructor.IndexRebuildException(String indexName, IndexRebuildService.Service service, Throwable cause)Constructor that builds an error message.IndexRebuildException(String indexName, IndexRebuildService.Service service, org.opencastproject.security.api.Organization org, Throwable cause)Constructor that builds an error message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
IndexRebuildException
public IndexRebuildException(String message)
Constructor without Cause.- Parameters:
message- The error message.
-
IndexRebuildException
public IndexRebuildException(String message, Throwable cause)
Full fledged constructor.- Parameters:
message- The error message.cause- The cause.
-
IndexRebuildException
public IndexRebuildException(String indexName, IndexRebuildService.Service service, Throwable cause)
Constructor that builds an error message.- Parameters:
indexName- The name of the index that's being rebuild.service- The service that's adding to the index.cause- The cause.
-
IndexRebuildException
public IndexRebuildException(String indexName, IndexRebuildService.Service service, org.opencastproject.security.api.Organization org, Throwable cause)
Constructor that builds an error message.- Parameters:
indexName- The name of the index that's being rebuild.service- The service that's adding to the index.org- The organization.cause- The cause.
-
-