📄 pingexception.java
字号:
package net.jxta.impl.shell.bin.ping;/** * This class is a provisional exception class that needs to * be more thoroughly designed to meet specific needs. It will * be thrown whenever an failure occurs in the ping framework. */public class PingException extends java.lang.Exception { /** * Creates new <code>PingException</code> without detail message. */ public PingException() { } /** * Constructs an <code>PingException</code> with the specified detail message. * @param msg the detail message. */ public PingException(String msg) { super(msg); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -