com.ivanceras.db.shared.exception.DatabaseException 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
/*******************************************************************************
* Copyright by CMIL
******************************************************************************/
package com.ivanceras.db.shared.exception;
public class DatabaseException extends Exception{
public DatabaseException(String msg) {
super(msg);
}
public DatabaseException(){
super();
}
/**
*
*/
private static final long serialVersionUID = 588316239403318350L;
}