* Undo wrongly removed generic Exception hadling,

This commit is contained in:
LevelX2 2014-05-02 09:34:36 +02:00
parent 13ac2d0103
commit 21149dc0ac
2 changed files with 3 additions and 13 deletions

View file

@ -172,9 +172,7 @@ public class MageServerImpl implements MageServer {
logger.debug("Tournament table " + table.getTableId() + " created");
LogServiceImpl.instance.log(LogKeys.KEY_TOURNAMENT_TABLE_CREATED, sessionId, userId.toString(), table.getTableId().toString());
return table;
} catch (NumberFormatException ex) {
handleException(ex);
} catch (MageException ex) {
} catch (Exception ex) {
handleException(ex);
}
return null;