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

📄 tagdefinedexception.java

📁 中国移动定位引擎的客户端
💻 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;

/**
 * Tag has already been defined. This exception is thrown by
 * {@link Tag#defineTag}if an attempt is made to redefine a tag which already
 * has a definition.
 * 
 * @author Oran Kelly
 * @version $Id: TagDefinedException.java 258 2006-03-09 11:37:09Z orank $
 */
public class TagDefinedException extends java.lang.RuntimeException {
    static final long serialVersionUID = -2723406909679964988L;
    
    /**
     * The value of the tag that was attempted to be redefined.
     */
    private int tagValue = -1;

    /**
     * Create a new TagDefinedException.
     * 
     * @param tagValue
     *            The tag for which an attempt as made to redefine.
     */
    public TagDefinedException(int tagValue) {
        this.tagValue = tagValue;
    }

    /**
     * Create a new TagDefinedException.
     * 
     * @param tagValue
     *            The tag for which an attempt as made to redefine.
     * @param msg
     *            The exception message.
     */
    public TagDefinedException(int tagValue, String msg) {
        super(msg);
        this.tagValue = tagValue;
    }

    /**
     * Get the tag for which an attempt as made to redefine.
     * 
     * @return The tag for which an attempt as made to redefine.
     */
    public int getTagValue() {
        return tagValue;
    }
}

⌨️ 快捷键说明

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