Beispiel #1
0
 public static List<Result> getWorldWideRanking(GameSetting gameSetting, int size)
     throws GameServiceException {
   try {
     return resultDao.getWorldWideRanking(gameSetting, size);
   } catch (DAOException e) {
     e.printStackTrace();
     throw new GameServiceException();
   }
 }