WALA/com.ibm.wala.core/src/com/ibm/wala/classLoader/NoSuperclassFoundException....

15 lines
350 B
Java

package com.ibm.wala.classLoader;
/**
* Indicates the superclass for a class was not found in the
* {@link com.ibm.wala.ipa.callgraph.AnalysisScope}
*/
public class NoSuperclassFoundException extends RuntimeException {
static final long serialVersionUID = 333L;
public NoSuperclassFoundException(String message) {
super(message);
}
}