?? communicationexception.java
字號(hào):
/* * CommunicationException.java */package EDU.gatech.cc.is.communication;/** * Signals that an execption of some sort has occured in a communication * event. * <P> * <A HREF="../COPYRIGHT.html">Copyright</A> * (c)1998 tucker Balch * * @author Tucker Balch (tucker@cc.gatech.edu) * @version $Revision: 1.1 $ */public class CommunicationException extends Exception { /** * Constructs a <code>CommunicationException</code> with no * detail message. */ public CommunicationException() { super(); } /** * Constructs a <code>CommunicationException</code> with a * specified detail message. * * @param s the detail message. */ public CommunicationException( String msg ) { super(msg); } }
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -