badvaluetypeexception.java

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

JAVA
31
字号
package ie.omk.smpp.message.tlv;/** * Attempt to set a value on a tag that expects a Java type other than that * used. This exception gets thrown if an attempt is made, for instance, to set * a <code>java.lang.String</code> value on a Tag that is defined as an * integer. *  * @version $Id: BadValueTypeException.java 258 2006-03-09 11:37:09Z orank $ */public class BadValueTypeException extends RuntimeException {    static final long serialVersionUID = 5894340962605773779L;        /**     * Create a new BadValueTypeException.     */    public BadValueTypeException() {    }    /**     * Create a new BadValueTypeException.     *      * @param msg     *            Exception message.     */    public BadValueTypeException(String msg) {        super(msg);    }}

⌨️ 快捷键说明

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