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

de.uni.freiburg.iig.telematik.jagal.graph.exception.GraphException Maven / Gradle / Ivy

package de.uni.freiburg.iig.telematik.jagal.graph.exception;


public abstract class GraphException extends Exception{

	private static final long serialVersionUID = 8025121318188217233L;
	
	protected String graphName = null;
	
	public GraphException(String graph){
		super();
		this.graphName = graph;
	}
	
	public String getGraphName(){
		return graphName;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy