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

org.n3r.eql.ex.EqlExecuteException Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package org.n3r.eql.ex;

public class EqlExecuteException extends EqlException {
    private static final long serialVersionUID = -4580346119774034899L;

    public EqlExecuteException(String msg) {
        super(msg);
    }

    public EqlExecuteException(Throwable e) {
        super(e);
    }

    public EqlExecuteException(String msg, Throwable e) {
        super(msg, e);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy