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

com.github.ltsopensource.core.groovy.GroovyException Maven / Gradle / Ivy

package com.github.ltsopensource.core.groovy;

/**
 * @author Robert HG ([email protected]) on 11/11/15.
 */
public class GroovyException extends Exception{

    public GroovyException() {
        super();
    }

    public GroovyException(String message) {
        super(message);
    }

    public GroovyException(String message, Throwable cause) {
        super(message, cause);
    }

    public GroovyException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy