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