try {
// Try to delete an existed play for the current anonymous player
response = game.deleteAnonym(playerID);
if (response == null) {
throw new GameException(GameException.typeErr.SYSKO);
}
} catch (GameException e) {
response = processError(e);
}
return response;