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

ca.coglinc.gradle.plugins.javacc.JavaccTaskException Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package ca.coglinc.gradle.plugins.javacc;

/**
 * Extends from {@link RuntimeException} because this exception is used to trapped checked exception in code not expecting it and that cannot be
 * changed.
 */
public class JavaccTaskException extends RuntimeException {
    private static final long serialVersionUID = 1L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy