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

AnnotatedTree.ParenthesisInLayerException Maven / Gradle / Ivy

package AnnotatedTree;

public class ParenthesisInLayerException extends Exception{
    private String layerString;

    public ParenthesisInLayerException(String layerString){
        this.layerString = layerString;
    }

    public String toString(){
        return "Layer value " + layerString + " contains parenthesis '('";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy