All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hex.genmodel.easy.exception.PredictNumberFormatException Maven / Gradle / Ivy

There is a newer version: 3.46.0.5
Show newest version
package hex.genmodel.easy.exception;

/**
 * Unknown type exception.
 *
 * When a RowData observation is provided to a predict method, the value types are extremely restricted.
 * This exception occurs if the value of a numeric feature fails to parse as Double. Ex. empty string
 *
 */
public class PredictNumberFormatException extends PredictException {
  public PredictNumberFormatException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy