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

org.opensearch.ml.common.exception.ExecuteException Maven / Gradle / Ivy

There is a newer version: 2.17.1.0
Show 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 - 2024 Weber Informatics LLC | Privacy Policy