sp-05/src/ch/usi/inf/sp/callgraph/TypeInconsistencyException....

16 lines
306 B
Java

package ch.usi.inf.sp.callgraph;
/**
* Thrown in cases of type inconsistencies while building the ClassHierarchy
*
* @author Matthias.Hauswirth@usi.ch
*/
public class TypeInconsistencyException extends Exception {
public TypeInconsistencyException(final String message) {
super(message);
}
}