net.thevpc.jeep.core.nodes.JBreakException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeep-nodes Show documentation
Show all versions of jeep-nodes Show documentation
Java Enhanced Expression Parser (JEEP)
package net.thevpc.jeep.core.nodes;
public class JBreakException extends RuntimeException{
private String name;
public JBreakException() {
this(null);
}
public JBreakException(String name) {
super("Break to "+(name==null?"":"name"));
this.name = name;
}
public String getName() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy