Class TreeEngineException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.dtree.exception.TreeEngineException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DecisionTreeException
public class TreeEngineException extends AppException
Base class for exception generated by the decision tree engine.- Since:
- 5.0
- Author:
- F. van der Meer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TreeEngineException(String message)
Constructs the exception with a message.TreeEngineException(String message, Throwable cause)
Constructs the exception with a message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TreeEngineException
public TreeEngineException(String message)
Constructs the exception with a message.- Parameters:
message
- The message containing detailed information about the exception.
-
-