Package com.imsl.datamining
Class PredictiveModel.PredictiveModelException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.imsl.IMSLException
com.imsl.datamining.PredictiveModel.PredictiveModelException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DecisionTree.MaxTreeSizeExceededException,DecisionTree.PruningFailedToConvergeException,DecisionTree.PureNodeException,PredictiveModel.CloneNotSupportedException,PredictiveModel.StateChangeException,PredictiveModel.SumOfProbabilitiesNotOneException,RandomTrees.ReflectiveOperationException,SupportVectorMachine.ReflectiveOperationException
- Enclosing class:
- PredictiveModel
An exception class intended to be the parent of all nested Exception
classes where the enclosing class extends
PredictiveModel.
The
CrossValidation
and
BootstrapAggregation
classes operate on PredictiveModel objects. These classes,
in order to maintain generality, throw this parent Exception.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPredictiveModelException(String message) Constructs aPredictiveModelExceptionand issues the specified message.PredictiveModelException(String packageName, String key, Object[] arguments) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PredictiveModelException
Constructs aPredictiveModelExceptionand issues the specified message.- Parameters:
message- aStringthat contains a message to be issued when the exception occurs
-
PredictiveModelException
-