📄 communicationexception.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 + -