net.sf.nakeduml.feature.CircularPrecessionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metamodel Show documentation
Show all versions of metamodel Show documentation
A uml code generator and execution engine
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();
}
}