cycleexception.java

来自「OpenJGraph是一个开源的Java库」· Java 代码 · 共 21 行

JAVA
21
字号
package salvo.jesus.graph;/** * Thrown when a cycle has occured when it is not desired. * This is typically thrown by <tt>DirectedAcyclicGraph</tt>s * and <tt>Tree</tt>s. * * @author  Jesus M. Salvo Jr. */public class CycleException extends GraphException {    public CycleException() {        super();    }    public CycleException( String msg ) {        super( msg );    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?