org.opensearch.ml.common.exception.ExecuteException Maven / Gradle / Ivy
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);
}
}