fatalbeanexception.java

来自「该源码包括了基于J2EE的数据持久层设计,设计中使用了DAO,Service,等」· Java 代码 · 共 47 行

JAVA
47
字号
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 + =
减小字号Ctrl + -
显示快捷键?