communicationexception.java
来自「利用JAVA采用网络通讯的例子,支持weblogic及websphere」· Java 代码 · 共 30 行
JAVA
30 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?