?? invalidsizeforvalueexception.java
字號(hào):
/**
*
* <p>Title: Smgp協(xié)議TLV結(jié)構(gòu)解析</p>
* <p>Description: 值大小異常處理</p>
* <p>Copyright: Copyright (c) 2007</p>
* <p>Company: 福富軟件</p>
* @author chenxin
* @version 1.0 $Date 2007-07-03
*/
package ffcs.lbp.le.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);
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -