📄 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 + -