ModelManager oModMan = new ModelManager();
oModMan.setConnection((Connection)oConn);
try {
oModMan.createCategoriesForUser(sRetVal);
if (oModMan.report().length()>0) throw new SQLException(oModMan.report(), "EVAL");
} catch (IOException ioe) {
throw new SQLException("IOException "+ioe.getMessage());
} catch (SQLException sql) {
throw new SQLException("SQLException "+sql.getMessage(), sql.getSQLState(), sql.getErrorCode());
}