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

📄 componentagentexception.java

📁 一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs12315src里,没有打包数据库.
💻 JAVA
字号:
/*
 * ComponentAgentException.java
 *
 * Created on 2001年7月13日, 下午1:11
 */

package com.gs.db;

/**
 * Thrown by call-back methods of a IofficeComponentAgent object
 * to indicate exceptions. For each application component (agent),the system 
 * will call these callback functions when some important event happens, such
 * as deleting a user,etc.
 *
 * @see IofficeComponentAgent
 */
public class ComponentAgentException extends java.lang.Exception {

    /**
 * Creates new <code>ComponentAgentException</code> without detail message.
     */
    public ComponentAgentException() {
    }


    /**
 * Constructs an <code>ComponentAgentException</code> with the specified detail message.
     * @param msg the detail message.
     */
    public ComponentAgentException(String msg) {
        super(msg);
    }
}


⌨️ 快捷键说明

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