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

📄 xmlparseexception.java

📁 java下面的异常框架
💻 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 + -