Package com.ibm.wala.ipa.callgraph
Class CallGraphBuilderCancelException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.wala.util.CancelException
-
- com.ibm.wala.ipa.callgraph.CallGraphBuilderCancelException
-
- All Implemented Interfaces:
Serializable
public class CallGraphBuilderCancelException extends CancelException
An exception to throw when call graph construction is canceled. This exception allows clients to retrieve the partially-built call graph and pointer analysis- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CallGraphBuilderCancelExceptioncreateCallGraphBuilderCancelException(Exception cause, CallGraph cg, PointerAnalysis<InstanceKey> pointerAnalysis)static CallGraphBuilderCancelExceptioncreateCallGraphBuilderCancelException(String msg, CallGraph cg, PointerAnalysis<InstanceKey> pointerAnalysis)CallGraphgetPartialCallGraph()PointerAnalysis<InstanceKey>getPartialPointerAnalysis()-
Methods inherited from class com.ibm.wala.util.CancelException
make
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
createCallGraphBuilderCancelException
public static CallGraphBuilderCancelException createCallGraphBuilderCancelException(Exception cause, CallGraph cg, PointerAnalysis<InstanceKey> pointerAnalysis)
-
createCallGraphBuilderCancelException
public static CallGraphBuilderCancelException createCallGraphBuilderCancelException(String msg, CallGraph cg, PointerAnalysis<InstanceKey> pointerAnalysis)
-
getPartialCallGraph
public CallGraph getPartialCallGraph()
- Returns:
- the
CallGraphin whatever state it was left when computation was canceled
-
getPartialPointerAnalysis
public PointerAnalysis<InstanceKey> getPartialPointerAnalysis()
- Returns:
- the
PointerAnalysisin whatever state it was left when computation was canceled
-
-