Class CheckedJaicoreMLException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ai.libs.jaicore.ml.core.exception.CheckedJaicoreMLException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ConfigurationException,ContainsNonNumericAttributesException,DatasetCapacityReachedException,EvaluationException,PredictionException,TrainingException
public abstract class CheckedJaicoreMLException extends java.lang.ExceptionTheCheckedJaicoreMLExceptionserves as a base class for all checkedExceptions defined as part of jaicore-ml.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CheckedJaicoreMLException(java.lang.String message)Creates a newCheckedJaicoreMLExceptionwith the given parameters.CheckedJaicoreMLException(java.lang.String message, java.lang.Throwable cause)Creates a newCheckedJaicoreMLExceptionwith the given parameters.
-
-
-
Constructor Detail
-
CheckedJaicoreMLException
public CheckedJaicoreMLException(java.lang.String message, java.lang.Throwable cause)Creates a newCheckedJaicoreMLExceptionwith the given parameters.- Parameters:
message- The message of thisException.cause- The underlying cause of thisException.
-
CheckedJaicoreMLException
public CheckedJaicoreMLException(java.lang.String message)
Creates a newCheckedJaicoreMLExceptionwith the given parameters.- Parameters:
message- The message of thisException.
-
-