Class DatasetCapacityReachedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ai.libs.jaicore.ml.core.exception.CheckedJaicoreMLException
-
- ai.libs.jaicore.ml.core.exception.DatasetCapacityReachedException
-
- All Implemented Interfaces:
java.io.Serializable
public class DatasetCapacityReachedException extends CheckedJaicoreMLException
Exception that indicates that the capacity of aTimeSeriesDatasetis reached. I.e. the maximum nuber of instances is already contained in the dataset.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DatasetCapacityReachedException(java.lang.String message)Creates a newDatasetCapacityReachedExceptionwith the given parameters.DatasetCapacityReachedException(java.lang.String message, java.lang.Throwable cause)Creates a newDatasetCapacityReachedExceptionwith the given parameters.
-
-
-
Constructor Detail
-
DatasetCapacityReachedException
public DatasetCapacityReachedException(java.lang.String message, java.lang.Throwable cause)Creates a newDatasetCapacityReachedExceptionwith the given parameters.- Parameters:
message- The message of thisException.cause- The underlying cause of thisException.
-
DatasetCapacityReachedException
public DatasetCapacityReachedException(java.lang.String message)
Creates a newDatasetCapacityReachedExceptionwith the given parameters.- Parameters:
message- The message of thisException.
-
-