📄 nopossibleroutingexception.java
字号:
package dk.itu.nulx30.networkModel.exceptions;
/**
* Class <code>NoPossibleRoutingException</code> is thrown if is not possible to
* route the package any further. This can happend if there is no path to the
* destination or if the package has reached a dead end.
*
* @author Mikkel Bundgaard
* @author Troels C. Damgaard
* @author Federico Decara
* @author Jacob W. Winther
*
*/
public class NoPossibleRoutingException extends Exception {
/**
* Public constructor, that creates a <code>NoPossibleRoutingException</code>
* with a string argument, which is a string representation of the exception.
*
* @param thrower string representation of the exception
*/
public NoPossibleRoutingException( String thrower ) {
super( thrower );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -