?? badvaluetypeexception.java
字號:
/**
*
* <p>Title: Smgp協議TLV結構解析</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;
/**
* 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -