xmlparseexception.java
来自「基于struts的一个异常处理框架,采用aop原理来统一处理异常。」· Java 代码 · 共 29 行
JAVA
29 行
package org.expframework.exceptions;
/**
* This exception is thrown when some exception occurs while parsing XML file or
* stream.
*
* @author ShriKant
*
* @version 1.0
*/
public class XmlParseException extends RuntimeException {
static final long serialVersionUID = 5850243503337783048L;
/**
* Creates the <code>XmlParseException</code> instance using exception
* message and root cause of XML parse exception.
*
* @param msg
* message as String object.
* @param t
* Throwable object.
*
*
*/
public XmlParseException(String msg, Throwable t) {
super(msg, t);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?