Message response = loadPlayLister(pl_id);
switch (response.getHeader()) {
case Message.LOAD_GAME_LIST_SUCCESS:
return response;
case Message.LOAD_GAME_LIST_ERROR:
throw new GameException(GameException.typeErr.LOAD_GAME_LIST_ERROR);
case Message.PLAYER_NOT_LOGGED:
throw new GameException(GameException.typeErr.PLAYER_NOT_LOGGED);
case Message.XML_FILE_NOT_EXISTS:
throw new GameException(GameException.typeErr.LOAD_GAME_LIST_ERROR);
}
return null;
}