com.ivanceras.db.shared.exception.TransactionErrorException 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 TransactionErrorException extends DatabaseException {
/**
*
*/
private static final long serialVersionUID = -1662330727515581706L;
public TransactionErrorException(){
super();
}
public TransactionErrorException(String msg){
super(msg);
}
}