com.ivanceras.db.shared.exception.DBConnectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orm Show documentation
Show all versions of orm Show documentation
ORM - Core Library for Database
package com.ivanceras.db.shared.exception;
public class DBConnectionException extends Exception{
public DBConnectionException(String msg) {
super(msg);
}
public DBConnectionException(){
super();
}
/**
*
*/
private static final long serialVersionUID = 588316239403318350L;
}