de.dagere.peass.dependencyprocessors.ViewNotFoundException Maven / Gradle / Ivy
package de.dagere.peass.dependencyprocessors;
/**
* Occurs when a view, i.e. trace-diff of testcalls in two versions, can not be generated because kieker-results are not available.
*
* @author reichelt
*
*/
public class ViewNotFoundException extends Exception {
private static final long serialVersionUID = -2188032261507161362L;
public ViewNotFoundException(String string) {
super(string);
}
}