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

net.thevpc.jeep.core.nodes.JBreakException Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
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