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

de.uni.freiburg.iig.telematik.jagal.ts.exception.TSException Maven / Gradle / Ivy

Go to download

JAGAL provides implementations for directed graphs (weighted and unweighted) and various types of transition systems as well as utils for graph traversal and modification.

The newest version!
package de.uni.freiburg.iig.telematik.jagal.ts.exception;

import de.uni.freiburg.iig.telematik.jagal.graph.exception.GraphException;

public abstract class TSException extends Exception{

	private static final long serialVersionUID = -3500067527424826908L;
	
	protected String tsName = null;
	protected GraphException graphException = null;
	
	public TSException(String tsName){
		super();
		this.tsName = tsName;
	}
	
	public TSException(GraphException graphException){
		super();
		this.tsName = graphException.getGraphName();
		this.graphException = graphException;
		setStackTrace(graphException.getStackTrace());
	}
	
	public String getTSName(){
		return tsName;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy