nodemsgnotfoundexception.java
来自「解析特定16进制文件」· Java 代码 · 共 42 行
JAVA
42 行
package com.datangmobile.oss.omc.pc.util;
/*******************************************************************************
* 节点不存在异常。 在解析xml文件时,如果发现某些指定节点 不存在就会抛出异常。
******************************************************************************/
public class NodeMsgNotFoundException extends Exception {
/**
*
*/
private static final long serialVersionUID = -3660413353910986864L;
public NodeMsgNotFoundException() {
super();
}
/**
*
* @param str
*/
public NodeMsgNotFoundException(String str) {
super(str);
}
/**
*
* @param message
* @param cause
*/
public NodeMsgNotFoundException(String message, Throwable cause) {
super(message, cause);
}
/**
*
* @param cause
*/
public NodeMsgNotFoundException(Throwable cause) {
super(cause);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?