Package org.tribuo.data.text
Class TextProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.tribuo.data.text.TextProcessingException
- All Implemented Interfaces:
Serializable
An exception thrown by the text processing system.
- See Also:
-
Constructor Summary
ConstructorDescriptionTextProcessingException
(String message) Creates a TextProcessingException with the specified message.TextProcessingException
(String message, Throwable throwable) Creates a TextProcessingException wrapping the supplied throwable with the specified message.TextProcessingException
(Throwable throwable) Creates a TextProcessingException wrapping the supplied throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TextProcessingException
Creates a TextProcessingException with the specified message.- Parameters:
message
- The exception message.
-
TextProcessingException
Creates a TextProcessingException wrapping the supplied throwable with the specified message.- Parameters:
message
- The exception message.throwable
- The throwable to wrap.
-
TextProcessingException
Creates a TextProcessingException wrapping the supplied throwable.- Parameters:
throwable
- The throwable to wrap.
-