try {
// Try to save current play for the current player
response = game.SavePlay(type, playerID, playID, ga_infos);
if (response == null) {
throw new GameException(GameException.typeErr.SYSKO);
}
} catch (GameException e) {
response = processError(e);
}
return response;