smppruntimeexception.java

来自「SMPP(点到点短消息协议)的java实现」· Java 代码 · 共 29 行

JAVA
29
字号
package ie.omk.smpp;/** * SMPPRuntimeException. *  * @author Oran Kelly <orank@users.sf.net> * @version 1.0 */public class SMPPRuntimeException extends java.lang.RuntimeException {    static final long serialVersionUID = 5392381000287167880L;    public SMPPRuntimeException() {        super();    }    public SMPPRuntimeException(String msg) {        super(msg);    }    public SMPPRuntimeException(Throwable cause) {        super(cause);    }    public SMPPRuntimeException(String msg, Throwable cause) {        super(msg, cause);    }}

⌨️ 快捷键说明

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