?? xmlparseexception.java
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -