⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pingexception.java

📁 Java p2p程序设计2002年版
💻 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 + -