* @throws RollbackApplicationException an application exception defined in
* the deployment descriptor, it is always thrown.
*/
public void createTableWithAppExceptionOverride(final String dbName) throws NamingException, NotSupportedException,
SystemException, SQLException, RollbackApplicationException {
TableManager tableManager = new TableManager(dbName);
tableManager.insertTable(TABLE);
throw new RollbackApplicationException("The bean threw an application exception defined by annotation.");
}