Class PredictionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ai.libs.jaicore.ml.core.exception.CheckedJaicoreMLException
-
- ai.libs.jaicore.ml.core.exception.PredictionException
-
- All Implemented Interfaces:
java.io.Serializable
public class PredictionException extends CheckedJaicoreMLException
ThePredictionExceptionindicates that an error occurred during a prediction process. Details concerning the error can be inferred from the associated message.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PredictionException(java.lang.String message)Creates a newPredictionExceptionwith the given parameters.PredictionException(java.lang.String message, java.lang.Throwable cause)Creates a newPredictionExceptionwith the given parameters.
-
-
-
Constructor Detail
-
PredictionException
public PredictionException(java.lang.String message, java.lang.Throwable cause)Creates a newPredictionExceptionwith the given parameters.- Parameters:
message- The message of thisException.cause- The underlying cause of thisException.
-
PredictionException
public PredictionException(java.lang.String message)
Creates a newPredictionExceptionwith the given parameters.- Parameters:
message- The message of thisException.
-
-