Changeset 30319 in osm for applications/editors/josm/plugins/CommandLine/src
- Timestamp:
- 2014-03-10T02:36:47+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/src/CommandLine/OsmToCmd.java
r30145 r30319 41 41 import org.openstreetmap.josm.data.osm.WayData; 42 42 import org.openstreetmap.josm.io.IllegalDataException; 43 import org.openstreetmap.josm.io.OsmDataParsingException;44 43 import org.openstreetmap.josm.io.UTFInputStreamReader; 45 44 import org.openstreetmap.josm.tools.DateUtils; 45 import org.openstreetmap.josm.tools.XmlParsingException; 46 46 import org.xml.sax.Attributes; 47 47 import org.xml.sax.InputSource; … … 94 94 } 95 95 96 protected void throwException(String msg) throws OsmDataParsingException {97 throw new OsmDataParsingException(msg).rememberLocation(locator);96 protected void throwException(String msg) throws XmlParsingException { 97 throw new XmlParsingException(msg).rememberLocation(locator); 98 98 } 99 99
Note:
See TracChangeset
for help on using the changeset viewer.