com.yishuifengxiao.common.tool.exception.DaoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-tool Show documentation
Show all versions of common-tool Show documentation
本工具包主要集成了目前在项目开发过程中个人经常会使用到的一些工具类,对工具类进行了一下简单的封装
/**
*
*/
package com.yishuifengxiao.common.tool.exception;
/**
* dao层统一封装的异常类
* @author yishui
* @date 2018年12月8日
* @Version 0.0.1
*/
public class DaoException extends BusinessException {
/**
*
*/
private static final long serialVersionUID = -4353278980810247543L;
/**
*
*/
public DaoException() {
// TODO Auto-generated constructor stub
}
/**
* @param message
*/
public DaoException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
/**
* @param cause
*/
public DaoException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
/**
* @param message
* @param cause
*/
public DaoException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
/**
* @param message
* @param cause
* @param enableSuppression
* @param writableStackTrace
*/
public DaoException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy