Package ai.libs.jaicore.ml.metafeatures
Class DatasetCharacterizerInitializationFailedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ai.libs.jaicore.ml.metafeatures.DatasetCharacterizerInitializationFailedException
-
- All Implemented Interfaces:
java.io.Serializable
public class DatasetCharacterizerInitializationFailedException extends java.lang.ExceptionAn exception that signifies something went wrong during the initialization of a dataset characterizer- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DatasetCharacterizerInitializationFailedException()Create an exception with a default message.DatasetCharacterizerInitializationFailedException(java.lang.String message)Create an exception with the given message.DatasetCharacterizerInitializationFailedException(java.lang.String message, java.lang.Throwable cause)Create an exception with the given cause and additional messageDatasetCharacterizerInitializationFailedException(java.lang.Throwable cause)Create an exception with the given cause.
-
-
-
Constructor Detail
-
DatasetCharacterizerInitializationFailedException
public DatasetCharacterizerInitializationFailedException()
Create an exception with a default message.
-
DatasetCharacterizerInitializationFailedException
public DatasetCharacterizerInitializationFailedException(java.lang.String message)
Create an exception with the given message.- Parameters:
message- the used message
-
DatasetCharacterizerInitializationFailedException
public DatasetCharacterizerInitializationFailedException(java.lang.Throwable cause)
Create an exception with the given cause.- Parameters:
cause- the cause of the exception
-
DatasetCharacterizerInitializationFailedException
public DatasetCharacterizerInitializationFailedException(java.lang.String message, java.lang.Throwable cause)Create an exception with the given cause and additional message- Parameters:
message- the messagecause- the cause of the exception
-
-