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

ml.comet.experiment.registrymodel.ModelNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.1.14
Show newest version
package ml.comet.experiment.registrymodel;

import ml.comet.experiment.exception.CometApiException;

/**
 * Raised when experiment model is not found.
 */
public class ModelNotFoundException extends CometApiException {
    /**
     * Constructs a new runtime exception with the specified detail message.
     * The cause is not initialized, and may subsequently be initialized by a
     * call to {@link #initCause}.
     *
     * @param message the detail message. The detail message is saved for
     *                later retrieval by the {@link #getMessage()} method.
     */
    public ModelNotFoundException(String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy