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

org.mlflow.sagemaker.PredictorLoadingException Maven / Gradle / Ivy

package org.mlflow.sagemaker;

/**
 * An exception indicating a failure during the process of creating a {@link
 * org.mlflow.sagemaker.Predictor} from an MLflow model
 */
public class PredictorLoadingException extends RuntimeException {
  /**
   * Constructs an exception
   *
   * @param message The user-readable error message associated with this exception
   */
  public PredictorLoadingException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy