All Packages Class Hierarchy This Package Previous Next Index
Class rpi.goldsd.graph.PathDoesNotExistException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----rpi.goldsd.graph.PathDoesNotExistException
- public class PathDoesNotExistException
- extends RuntimeException
The PathDoesNotExistException class represents an exception that
should be thrown when a method fails because a path does not exist.
As an example, refer to the findShortestPath() method.
- Version:
- 2.0, 4/16/98
- Author:
- David Goldschmidt
- See Also:
- Algorithms
-
PathDoesNotExistException()
- The default constructor simply calls the default constructor
of the parent class RuntimeException.
-
PathDoesNotExistException(String)
- This constructor calls the corresponding constructor of the
parent class RuntimeException with the String
argument to be displayed.
PathDoesNotExistException
public PathDoesNotExistException()
- The default constructor simply calls the default constructor
of the parent class RuntimeException.
PathDoesNotExistException
public PathDoesNotExistException(String s)
- This constructor calls the corresponding constructor of the
parent class RuntimeException with the String
argument to be displayed.
- Parameters:
- s - the String object to be displayed.
All Packages Class Hierarchy This Package Previous Next Index