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

📄 invalidsizeforvalueexception.java

📁 SMPP(点到点短消息协议)的java实现
💻 JAVA
字号:
package ie.omk.smpp.message.tlv;/** * An attempt was made to encode or decode a value with a length outside of the * bounds defined by its <code>Tag</code>. This can happen, for instance, * when an attempt is made to encode a string value that is longer than the * maximum length defined by the tag for that value. *  * @version $Id: InvalidSizeForValueException.java 258 2006-03-09 11:37:09Z orank $ */public class InvalidSizeForValueException extends RuntimeException {    static final long serialVersionUID = -4600629750433218768L;        /**     * Create a new InvalidSizeForValueException.     */    public InvalidSizeForValueException() {    }    /**     * Create a new InvalidSizeForValueException.     *      * @param msg     *            The exception message.     */    public InvalidSizeForValueException(String msg) {        super(msg);    }}

⌨️ 快捷键说明

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