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