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

📄 daosystemexception.java

📁 基于SSH (struts+spring+hibernate)框架设计的 CRM客户关系管理系统
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -