cn.tangjiabao.halodb.core.exception.CannotGetConnectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haloDb Show documentation
Show all versions of haloDb Show documentation
Orm whitch The highest development efficiency and Efficiency is the fastest
package cn.tangjiabao.halodb.core.exception;
import java.sql.SQLException;
/**
* 得不到连接
* @author [email protected]
* @date 2015-6-14 下午12:49:37
*/
public class CannotGetConnectionException extends NestedRuntimeException{
private static final long serialVersionUID = 1L;
public CannotGetConnectionException(String msg, SQLException ex) {
super(msg, ex);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy