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

📄 noencoderexception.java

📁 SMPP(点到点短消息协议)的java实现
💻 JAVA
字号:
package ie.omk.smpp.message.tlv;/** * No encoder found for a Java type. An attempt was made to define a new tag * with a value type that the API does not have a known encoder for. The * application should define a new encoder and define the tag passing that * encoder to the * {@link ie.omk.smpp.message.tlv.Tag#defineTag(int, java.lang.Class, ie.omk.smpp.message.tlv.Encoder, int)} * method. *  * @author Oran Kelly * @version $Id: NoEncoderException.java 267 2006-03-09 16:37:31Z orank $ */public class NoEncoderException extends RuntimeException {    static final long serialVersionUID = 6441311177365899332L;        private final Class type;    /**     * Create a new NoEncoderException.     *      * @param type     *            The Java type that no encoder was found for.     */    public NoEncoderException(Class type) {        this.type = type;    }    /**     * Create a new NoEncoderException.     *      * @param type     *            The Java type that no encoder was found for.     * @param msg     *            The exception message.     */    public NoEncoderException(Class type, String msg) {        super(msg);        this.type = type;    }        public Class getType() {        return type;    }}

⌨️ 快捷键说明

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