Class TextAnalyzerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.textanalyzer.api.TextAnalyzerException
- All Implemented Interfaces:
Serializable
This exception is thrown during media analyis.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTextAnalyzerException(String message) Creates a new media analysis exception withmessageas a reason.TextAnalyzerException(String message, Throwable cause) Creates a new media analysis exception withmessageas a reason andcauseas the original cause of failure.TextAnalyzerException(Throwable cause) Creates a new media analysis 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
-
TextAnalyzerException
Creates a new media analysis exception withmessageas a reason.- Parameters:
message- the reason of failure
-
TextAnalyzerException
Creates a new media analysis exception wherecauseidentifies the original reason of failure.- Parameters:
cause- the root cause for the failure
-
TextAnalyzerException
Creates a new media analysis exception withmessageas a reason andcauseas the original cause of failure.- Parameters:
message- the reason of failurecause- the root cause for the failure
-