soot.jimple.infoflow.sourcesSinks.definitions.InvalidAccessPathException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot-infoflow Show documentation
Show all versions of soot-infoflow Show documentation
Soot extending data flow tracking components for Java
package soot.jimple.infoflow.sourcesSinks.definitions;
public class InvalidAccessPathException extends RuntimeException {
private static final long serialVersionUID = -4996789547058608944L;
public InvalidAccessPathException() {
super();
}
public InvalidAccessPathException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public InvalidAccessPathException(String message, Throwable cause) {
super(message, cause);
}
public InvalidAccessPathException(String message) {
super(message);
}
public InvalidAccessPathException(Throwable cause) {
super(cause);
}
}