org.opensearch.ml.common.exception.ExecuteException Maven / Gradle / Ivy
The newest version!
package org.opensearch.ml.common.exception;
public class ExecuteException extends MLException {
public ExecuteException(String msg) {
super(msg);
}
public ExecuteException(Throwable cause) {
super(cause);
}
public ExecuteException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy