package fr.pandacube.lib.db; public class DBInitTableException extends DBException { /* package */ > DBInitTableException(Class tableElem, Throwable t) { super("Error while initializing table " + ((tableElem != null) ? tableElem.getName() : "null"), t); } /* package */ > DBInitTableException(Class tableElem, String message) { super("Error while initializing table " + ((tableElem != null) ? tableElem.getName() : "null") + ": " + message); } }