Class FixpointException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- it.unive.lisa.util.datastructures.graph.algorithms.FixpointException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
NoEntryPointException
public class FixpointException extends java.lang.ExceptionAn exception raised during the fixpoint computation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FixpointException()Builds the exception.FixpointException(java.lang.String message)Builds the exception.FixpointException(java.lang.String message, java.lang.Throwable cause)Builds the exception.FixpointException(java.lang.Throwable cause)Builds the exception.
-
-
-
Constructor Detail
-
FixpointException
public FixpointException()
Builds the exception.
-
FixpointException
public FixpointException(java.lang.String message, java.lang.Throwable cause)Builds the exception.- Parameters:
message- the message associated with this exceptioncause- the underlying cause of this exception
-
FixpointException
public FixpointException(java.lang.String message)
Builds the exception.- Parameters:
message- the message associated with this exception
-
FixpointException
public FixpointException(java.lang.Throwable cause)
Builds the exception.- Parameters:
cause- the underlying cause of this exception
-
-