Class InexistentEdgeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
es.uam.eps.ir.relison.sna.metrics.exception.InexistentEdgeException
- All Implemented Interfaces:
java.io.Serializable
public class InexistentEdgeException
extends java.lang.Exception
An edge metric could not be computed since the edge does not exist.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description InexistentEdgeException(java.lang.String message)
Constructs a InexistentEdgeException with the given detail message.InexistentEdgeException(java.lang.String message, java.lang.Throwable cause)
Constructs a InexistentEdgeException with the given detail message and root cause.InexistentEdgeException(java.lang.Throwable cause)
Constructs a InexistentEdgeException with the given root cause. -
Method Summary
-
Constructor Details
-
InexistentEdgeException
public InexistentEdgeException(java.lang.String message)Constructs a InexistentEdgeException with the given detail message.- Parameters:
message
- The detail message of the InexistentEdgeException.
-
InexistentEdgeException
public InexistentEdgeException(java.lang.Throwable cause)Constructs a InexistentEdgeException with the given root cause.- Parameters:
cause
- The root cause of the InexistentEdgeException.
-
InexistentEdgeException
public InexistentEdgeException(java.lang.String message, java.lang.Throwable cause)Constructs a InexistentEdgeException with the given detail message and root cause.- Parameters:
message
- The detail message of the InexistentEdgeException.cause
- The root cause of the InexistentEdgeException.
-