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

📄 communicationexception.java

📁 利用JAVA采用网络通讯的例子,支持weblogic及websphere
💻 JAVA
字号:
/*
 * CommunicationException.java
 *
 * Created on 2003年3月10日, 下午2:17
 */

package collector.communication;

/**
 *
 * @author  WangJun
 */
public class CommunicationException
    extends java.lang.Exception {

  /**
   * Creates a new instance of <code>CommunicationException</code> without detail message.
   */
  public CommunicationException() {
  }

  /**
   * Constructs an instance of <code>CommunicationException</code> with the specified detail message.
   * @param msg the detail message.
   */
  public CommunicationException(String msg) {
    super(msg);
  }
}

⌨️ 快捷键说明

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