daosystemexception.java

来自「基于SSH (struts+spring+hibernate)框架设计的 C」· Java 代码 · 共 25 行

JAVA
25
字号
package com.csu.crm.common.exception;

import java.lang.RuntimeException;

/**
 * DAOSystemException is thrown by a DAO component when there is
 * some irrecoverable error (like SQLException)
 */
public class DAOSystemException
    extends RuntimeException {

  public DAOSystemException() {}

  public DAOSystemException(String msg) {
    super(msg);
  }

  public DAOSystemException(String msg, Throwable cause) {
    super(msg, cause);
  }

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

⌨️ 快捷键说明

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