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

📄 fatalbeanexception.java

📁 该源码包括了基于J2EE的数据持久层设计,设计中使用了DAO,Service,等模式,并在Struts下进行了测试.
💻 JAVA
字号:
package org.conference.pagination;

/**
 * <p><strong>FatalBeanException</strong>,
 * Thrown on an unrecoverable problem encountered with Java Beans.
 *
 * @author   ZXM
 * @package  org.javawing.components.util
 * @since 3.0
 */
public class FatalBeanException
    extends BeansException {

  /**
   * Create a new FatalBeanException with no specified message.
   */
  public FatalBeanException() {
    super();
  }

  /**
   * Create a new FatalBeanException with the specified message.
   * @param msg the detail message
   */
  public FatalBeanException(String msg) {
    super(msg);
  }

  /**
   * Create a new FatalBeanException with the root cause.
   * @param ex the root cause
   */
  public FatalBeanException(Throwable ex) {
    super(ex);
  }

  /**
   * Create a new FatalBeanException with the specified message
   * and root cause.
   * @param msg the detail message
   * @param ex the root cause
   */
  public FatalBeanException(String msg, Throwable ex) {
    super(msg, ex);
  }

}

⌨️ 快捷键说明

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