Class TextProcessingException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.tribuo.data.text.TextProcessingException
All Implemented Interfaces:
Serializable

public class TextProcessingException extends Exception
An exception thrown by the text processing system.
See Also:
  • Constructor Details

    • TextProcessingException

      public TextProcessingException(String message)
      Creates a TextProcessingException with the specified message.
      Parameters:
      message - The exception message.
    • TextProcessingException

      public TextProcessingException(String message, Throwable throwable)
      Creates a TextProcessingException wrapping the supplied throwable with the specified message.
      Parameters:
      message - The exception message.
      throwable - The throwable to wrap.
    • TextProcessingException

      public TextProcessingException(Throwable throwable)
      Creates a TextProcessingException wrapping the supplied throwable.
      Parameters:
      throwable - The throwable to wrap.