Class SpellerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.spellengine.exception.SpellerException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SpellerOutOfRangeException
,UnknownMacroException
,UnknownSpellerException
public class SpellerException extends AppException
Base exception class for the speller engine.- Since:
- 6.0
- Author:
- Jon van Leuven
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SpellerException(String message)
Basic constructor with only a message explaining the cause of the error.SpellerException(String message, Throwable cause)
Constructor with both a message and an exception explaining the cause of the error.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SpellerException
public SpellerException(String message)
Basic constructor with only a message explaining the cause of the error.- Parameters:
message
- The message explaining the error that occurred.
-
-