net.ericaro.diezel.core.DiezelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of diezel-maven-plugin Show documentation
Show all versions of diezel-maven-plugin Show documentation
An Embedded Domain Specific Language Parser Generator PLugin compiler
The newest version!
package net.ericaro.diezel.core;
public class DiezelException extends Exception {
public DiezelException() {
super();
}
public DiezelException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
public DiezelException(String arg0) {
super(arg0);
}
public DiezelException(Throwable arg0) {
super(arg0);
}
}