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