ca.coglinc.gradle.plugins.javacc.JavaccTaskException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javacc-gradle-plugin Show documentation
Show all versions of javacc-gradle-plugin Show documentation
Provides the ability to use JavaCC with Gradle. Compiles JavaCC files to Java.
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);
}
}