jdsl.graph.api
Class InvalidEdgeException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--jdsl.graph.api.GraphException
                          |
                          +--jdsl.graph.api.InvalidEdgeException
All Implemented Interfaces:
java.io.Serializable

public class InvalidEdgeException
extends GraphException

An object of this class gets thrown when topological information related to Edges is somehow incorrect. Note that this exception is not intended to replace the jdsl.core.api.InvalidAccessorException, which covers cases where the edge passed to a function is null, or of a different implementation class, or from a different container.

For instance, an InvalidEdgeException would be thrown from reverseDirection(Edge) if the edge passed in was undirected.

Version:
$Id: InvalidEdgeException.java,v 1.3 1999/07/27 21:56:51 mdh Exp $
Author:
Benoit Hudson
See Also:
Edge, Serialized Form

Constructor Summary
InvalidEdgeException(java.lang.String message)
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidEdgeException

public InvalidEdgeException(java.lang.String message)