Beispiel #1
0
 public static Result getLatestResult(UserAccount user) throws GameServiceException {
   try {
     return resultDao.getLatestResult(user);
   } catch (DAOException e) {
     e.printStackTrace();
     throw new GameServiceException();
   }
 }