Changeset 12075 in josm
- Timestamp:
- 2017-05-06T18:18:43+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/FileImporter.java
r12059 r12075 16 16 import org.openstreetmap.josm.gui.progress.ProgressMonitor; 17 17 import org.openstreetmap.josm.gui.util.GuiHelper; 18 import org.openstreetmap.josm.tools.JosmRuntimeException; 19 import org.openstreetmap.josm.tools.Utils; 18 20 import org.openstreetmap.josm.tools.bugreport.BugReportExceptionHandler; 19 import org.openstreetmap.josm.tools.Utils;20 21 21 22 /** … … 103 104 displayError(f, e); 104 105 return false; 105 } catch ( Exception e) {106 } catch (JosmRuntimeException | IllegalArgumentException | IllegalStateException e) { 106 107 BugReportExceptionHandler.handleException(e); 107 108 return false;
Note:
See TracChangeset
for help on using the changeset viewer.