ml.comet.experiment.artifact.ConflictingArtifactAssetNameException Maven / Gradle / Ivy
package ml.comet.experiment.artifact;
/**
* Exception to be raised if logical name of the asset added to the {@link Artifact} is not unique.
*/
public class ConflictingArtifactAssetNameException extends ArtifactException {
/**
* 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 ConflictingArtifactAssetNameException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy