noencoderexception.java

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

JAVA
46
字号
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 + =
减小字号Ctrl + -
显示快捷键?