Ignore:
Timestamp:
2014-01-06T15:57:41+01:00 (10 years ago)
Author:
Don-vip
Message:

Improve handling of network errors at startup, suggest to change proxy settings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/ImageryLayerInfo.java

    r6316 r6642  
    8181            } catch (IOException ex) {
    8282                Utils.close(stream);
    83                 ex.printStackTrace();
     83                Main.error(ex, false);
    8484                continue;
    85             } catch (SAXException sex) {
     85            } catch (SAXException ex) {
    8686                Utils.close(stream);
    87                 sex.printStackTrace();
     87                Main.error(ex);
    8888                continue;
    8989            }
Note: See TracChangeset for help on using the changeset viewer.