--- android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/TimetableFetcher.java 2009/10/20 10:26:50 450 +++ android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/TimetableFetcher.java 2009/10/20 10:32:19 451 @@ -32,7 +32,7 @@ Logger logger = Logger.getLogger(TimetableFetcher.class.getName()); - List cachedLookupTimetable(String trainID, String type) throws Throwable { + List cachedLookupTimetable(String trainID, String type) throws Exception { String key = trainID+type; List list = cache.get(key); @@ -45,7 +45,7 @@ return list; } - List lookupTimetable(String trainID, String type) throws Throwable { + List lookupTimetable(String trainID, String type) throws Exception { List timetableList = new ArrayList(); String url = "http://www.bane.dk/visRute.asp?W=" + type + "&TogNr=" + trainID + "&artikelId=4276";