Class CallGraphConstructionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- it.unive.lisa.interprocedural.callgraph.CallGraphConstructionException
-
- All Implemented Interfaces:
java.io.Serializable
public class CallGraphConstructionException extends java.lang.Exception
An exception that occurred while building the callgraph.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CallGraphConstructionException()
Builds the exception.CallGraphConstructionException(java.lang.String message)
Builds the exception.CallGraphConstructionException(java.lang.String message, java.lang.Throwable cause)
Builds the exception.CallGraphConstructionException(java.lang.Throwable cause)
Builds the exception.
-
-
-
Constructor Detail
-
CallGraphConstructionException
public CallGraphConstructionException()
Builds the exception.
-
CallGraphConstructionException
public CallGraphConstructionException(java.lang.String message, java.lang.Throwable cause)
Builds the exception.- Parameters:
message
- the message of this exceptioncause
- the cause of this exception
-
CallGraphConstructionException
public CallGraphConstructionException(java.lang.String message)
Builds the exception.- Parameters:
message
- the message of this exception
-
CallGraphConstructionException
public CallGraphConstructionException(java.lang.Throwable cause)
Builds the exception.- Parameters:
cause
- the cause of this exception
-
-