*/
public void getGameInfo(UrlPart pattern, RedirectControlerInterface redirect) throws IllegalArgumentException, IllegalAccessException, InstantiationException, SQLException, SkipSubLevelsExeption {
currentGame = DbAccess.gamesAccess.getByUniqueId(pattern.getPattern().replaceAll("/", ""));
if (currentGame == null) {
redirect.setRedirect(new DirectRedirect(pattern.getUrlParsed()));
throw new SkipSubLevelsExeption();
}
String gameType = ",";
Long start = currentGame.getStartDate().getTime();