Class TextExtractorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.textextractor.api.TextExtractorException
- All Implemented Interfaces:
Serializable
This exception is thrown during text extraction.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTextExtractorException(String message) Creates a new text extration exception withmessageas a reason.TextExtractorException(String message, Throwable cause) Creates a new text extration exception withmessageas a reason andcauseas the original cause of failure.TextExtractorException(Throwable cause) Creates a new text extration exception wherecauseidentifies the original reason of failure. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TextExtractorException
Creates a new text extration exception withmessageas a reason.- Parameters:
message- the reason of failure
-
TextExtractorException
Creates a new text extration exception wherecauseidentifies the original reason of failure.- Parameters:
cause- the root cause for the failure
-
TextExtractorException
Creates a new text extration exception withmessageas a reason andcauseas the original cause of failure.- Parameters:
message- the reason of failurecause- the root cause for the failure
-