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

it.uniroma2.art.coda.exception.UnassignableFeaturePathException Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package it.uniroma2.art.coda.exception;

public class UnassignableFeaturePathException extends Exception {

	private String plcName;
	private String ruleId;
	private String featPath;
	private String type;
	
	private static final long serialVersionUID = 1L;

	public UnassignableFeaturePathException(String msg, String plcName, String ruleId, String featPath, 
			String type) {
		super(msg);
		this.plcName = plcName;
		this.ruleId = ruleId;
		this.featPath = featPath;
		this.type = type;
	}

	public UnassignableFeaturePathException(Exception e, String plcName, String ruleId, String featPath,
			String type) {
		super(e);
		this.plcName = plcName;
		this.ruleId = ruleId;
		this.featPath = featPath;
		this.type = type;
	}
	
	public String getPlcName(){
		return plcName;
	}
	
	public String getRuleId() {
		return ruleId;
	}
	
	public String getFeatPath(){
		return featPath;
	}
	
	public String getUimaType(){
		return type;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy