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

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