Package com.imsl.datamining.decisionTree
Class DecisionTree.MaxTreeSizeExceededException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.imsl.IMSLException
com.imsl.datamining.PredictiveModel.PredictiveModelException
com.imsl.datamining.decisionTree.DecisionTree.MaxTreeSizeExceededException
- All Implemented Interfaces:
Serializable
- Enclosing class:
- DecisionTree
public static class DecisionTree.MaxTreeSizeExceededException
extends PredictiveModel.PredictiveModelException
Exception thrown when the maximum tree size has been exceeded.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMaxTreeSizeExceededException(String message) Constructs aMaxTreeSizeExceededExceptionand issues the specified message.MaxTreeSizeExceededException(String key, Object[] arguments) Constructs aMaxTreeSizeExceededExceptionwith the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MaxTreeSizeExceededException
Constructs aMaxTreeSizeExceededExceptionand issues the specified message.- Parameters:
message- aStringthat contains a message to be issued when the exception occurs
-
MaxTreeSizeExceededException
Constructs aMaxTreeSizeExceededExceptionwith the specified detail message. The error message string is in a resource bundle, ErrorMessages.- Parameters:
key- aStringthat contains the key of an error message in the resource bundlearguments- anObjectarray containing arguments used within the error message specified by thekey
-