Class TextExtractorException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.textextractor.api.TextExtractorException
All Implemented Interfaces:
Serializable

public class TextExtractorException extends Exception
This exception is thrown during text extraction.
See Also:
  • Constructor Details

    • TextExtractorException

      public TextExtractorException(String message)
      Creates a new text extration exception with message as a reason.
      Parameters:
      message - the reason of failure
    • TextExtractorException

      public TextExtractorException(Throwable cause)
      Creates a new text extration exception where cause identifies the original reason of failure.
      Parameters:
      cause - the root cause for the failure
    • TextExtractorException

      public TextExtractorException(String message, Throwable cause)
      Creates a new text extration exception with message as a reason and cause as the original cause of failure.
      Parameters:
      message - the reason of failure
      cause - the root cause for the failure