Permalink
Fetching contributors…
Cannot retrieve contributors at this time
27 lines (20 sloc) 371 Bytes
package org.monarchinitiative.owlsim.compute.cpt;
/**
*
* @author cjm
*
*/
public class IncoherentStateException extends Exception {
/**
*
*/
private static final long serialVersionUID = 8248870779021724292L;
/**
* TODO: unify this for either direction
*
* @param label
*/
public IncoherentStateException(String label) {
super(label);
}
}