} catch (Exception ex) {
String msg = ex.getLocalizedMessage();
if (msg == null || msg.length() == 0) {
Integer id = tblTaLog.getId();
if (findTblTaLog(id) == null) {
throw new NonexistentEntityException("The tblTaLog with id " + id + " no longer exists.");
}
}
throw new ASDataException(ex);
} finally {
em.close();