pingexception.java

来自「Java p2p程序设计2002年版」· Java 代码 · 共 27 行

JAVA
27
字号
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 + =
减小字号Ctrl + -
显示快捷键?