Changeset 6643 in josm for trunk/src/org/openstreetmap/josm/gui/download
- Timestamp:
- 2014-01-06T16:39:45+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/PlaceSelection.java
r6552 r6643 246 246 } 247 247 } catch (NumberFormatException x) { 248 x.printStackTrace(); // SAXException does not chain correctly248 Main.error(x); // SAXException does not chain correctly 249 249 throw new SAXException(x.getMessage(), x); 250 250 } catch (NullPointerException x) { 251 x.printStackTrace(); // SAXException does not chain correctly251 Main.error(x); // SAXException does not chain correctly 252 252 throw new SAXException(tr("Null pointer exception, possibly some missing tags."), x); 253 253 }
Note:
See TracChangeset
for help on using the changeset viewer.