Changeset 8394 in josm for trunk/src/org/openstreetmap/josm/data/imagery/Shape.java
- Timestamp:
- 2015-05-18T23:34:11+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/Shape.java
r8291 r8394 72 72 throw new IllegalArgumentException(tr("Illegal latitude value ''{0}''", lat)); 73 73 } catch (NumberFormatException e) { 74 throw new IllegalArgumentException(MessageFormat.format("Illegal double value ''{0}''", sLat)); 74 throw new IllegalArgumentException(MessageFormat.format("Illegal double value ''{0}''", sLat), e); 75 75 } 76 76 … … 80 80 throw new IllegalArgumentException(tr("Illegal longitude value ''{0}''", lon)); 81 81 } catch (NumberFormatException e) { 82 throw new IllegalArgumentException(MessageFormat.format("Illegal double value ''{0}''", sLon)); 82 throw new IllegalArgumentException(MessageFormat.format("Illegal double value ''{0}''", sLon), e); 83 83 } 84 84
Note:
See TracChangeset
for help on using the changeset viewer.
