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

📄 xmlexception.java

📁 自动生成JAVA-Struts网站的程序
💻 JAVA
字号:
//---------------------------------------------------------------------------------// $Id: XMLException.java,v 1.1 2002/09/29 07:20:58 javanovic Exp $// $Source: /cvsroot/strutsgenerator/StrutsGenerator/src/com/javanovic/karapansapi/xml/XMLException.java,v $//// Copyright (c) 2001 IT+ (http://opensource.itplus.dk)// This program is released under the GNU General Public License version 2 or later// All rights reserved//---------------------------------------------------------------------------------package com.javanovic.karapansapi.xml;/** * XML exception */public class XMLException extends Exception {  public Exception detail;    /**     * Construct an exception with a reason     *     * @param reason Text containing the reason     */    public XMLException(String reason) {	super(reason);    }  /**   * Construct an exception with a reason and an ##   *   * @param reason Text containing the reason   * @param detail A nested exception.   */  public XMLException(String reason, Exception detail) {    this(reason);    this.detail = detail;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -