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

net.sf.nakeduml.feature.CircularPrecessionException Maven / Gradle / Ivy

The newest version!
package net.sf.nakeduml.feature;

import java.util.List;

public class CircularPrecessionException extends RuntimeException {
	private static final long serialVersionUID = 2315498205580642858L;
	private List traversalPath;
	private Object feature;

	public CircularPrecessionException(List traversalPath, Object feature) {
		this.traversalPath = traversalPath;
		this.feature = feature;
	}

	public Object getFeature() {
		return this.feature;
	}

	public List getTraversalPath() {
		return this.traversalPath;
	}
	@Override
	public String toString(){
		return this.traversalPath.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy