📄 nodemsgnotfoundexception.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -