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

📄 xmlbeanexception.java

📁 一个关于tlms的一个小程序 看看能否帮助到别人
💻 JAVA
字号:
/**
 * =============================================
 * Copyright 2005 TransFar
 *
 * Change Revision
 * --------------------------------
 *   Date        Author      Remarks
 *   2006-3-10     YHuang     Create class com.szmx.component.xml.rw.XmlBeanException
 * =============================================
 */
package com.szmx.component.xml.rw;

/**
 * <TODO: Write a short description on the purpose of the program>
 *
 * @author YHuang
 * @version 1.0
 * @class com.szmx.component.xml.rw.XmlBeanException
 * @since 2006-3-10
 */
public class XmlBeanException extends Exception{
    public XmlBeanException() {
    }

    public XmlBeanException(String message) {
        super(message);
    }

    public XmlBeanException(Throwable cause) {
        super(cause);
    }

    public XmlBeanException(String message, Throwable cause) {
        super(message, cause);
    }
}

⌨️ 快捷键说明

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