package fr.pandacube.java.util.db.sql_tools; public class ORMInitTableException extends ORMException { private static final long serialVersionUID = 1L; /* package */ > ORMInitTableException(Class tableElem) { super("Error while initializing table " + tableElem.getName()); } /* package */ > ORMInitTableException(Class tableElem, Throwable t) { super("Error while initializing table " + tableElem.getName(), t); } }