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