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