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