Files
secondo/Algebras/Rose/RoseJava/twodsack/util/graph/NoEqualVertexFoundException.java

29 lines
594 B
Java
Raw Normal View History

2026-01-23 17:03:45 +08:00
/*
* NoEqualVertexFoundException.java 2005-05-12
*
* Dirk Ansorge, FernUniversitaet Hagen
*
*/
package twodsack.util.graph;
/**
* An instance of this class is thrown, when an equal vertex was searched but not found.
*/
public class NoEqualVertexFoundException extends RuntimeException {
/**
* The empty constructor.
*/
public NoEqualVertexFoundException() { super(); }
/**
* An error mesage is passed using this constructor.
*
* @param s the error message
*/
public NoEqualVertexFoundException(String s) { super(s); }
}//end Exception