* @param force if set to false the engine is on loaded when the configuration has changed
* @throws PageException
*/
public static void resetEngine(PageContext pc, boolean force) throws PageException {
ConfigImpl config=(ConfigImpl) pc.getConfig();
config.resetORMEngine(pc,force);
}
public static void printError(Throwable t, ORMEngine engine) {
printError(t, engine, t.getMessage());
}