Class DecisionTreeFinderException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.dtree.exception.TreeEngineException
-
- com.aquima.interactions.dtree.exception.DecisionTreeException
-
- com.aquima.interactions.dtree.exception.DecisionTreeFinderException
-
- All Implemented Interfaces:
Serializable
public class DecisionTreeFinderException extends DecisionTreeException
Decision tree exeption that is used to indicate a lookup failure.- Since:
- 5.0
- Author:
- F. van der Meer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DecisionTreeFinderException​(String decisionTree, String message)
Constructs the exception with the name of the decision tree and the message.
-
Method Summary
-
Methods inherited from class com.aquima.interactions.dtree.exception.DecisionTreeException
getDecisionTree
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DecisionTreeFinderException
public DecisionTreeFinderException​(String decisionTree, String message)
Constructs the exception with the name of the decision tree and the message.- Parameters:
decisionTree
- The name of the decision tree.message
- The message containing detailed information about the exception.
-
-