Ignore:
Timestamp:
2009-07-25T13:03:23+02:00 (16 years ago)
Author:
Gubaer
Message:

applied #2850: patch by dmuecke - unhandled Exception when trying to download data while offline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/BoundingBoxDownloader.java

    r1811 r1835  
    4040     *      ways.
    4141     */
    42     public GpxData parseRawGps(ProgressMonitor progressMonitor) throws IOException, SAXException {
     42    public GpxData parseRawGps(ProgressMonitor progressMonitor) throws IOException, SAXException,OsmTransferException {
    4343        progressMonitor.beginTask("", 1);
    4444        try {
     
    7878            throw e;
    7979        } catch (SAXException e) {
     80            throw e;
     81        } catch (OsmTransferException e) {
    8082            throw e;
    8183        } catch (Exception e) {
Note: See TracChangeset for help on using the changeset viewer.