- Timestamp:
- 2019-03-26T22:46:08+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/PleaseWaitRunnable.java
r12846 r14936 15 15 import org.openstreetmap.josm.io.OsmTransferException; 16 16 import org.openstreetmap.josm.tools.CheckParameterUtil; 17 import org.openstreetmap.josm.tools.JosmRuntimeException;18 17 import org.openstreetmap.josm.tools.bugreport.BugReportExceptionHandler; 19 18 import org.xml.sax.SAXException; … … 114 113 } 115 114 } 116 } catch (final JosmRuntimeException | IllegalArgumentException | IllegalStateException | UnsupportedOperationException |117 OsmTransferException | IOException | SAXException | InvocationTargetException| InterruptedException e) {115 } catch (final RuntimeException | OsmTransferException | IOException | SAXException | InvocationTargetException 116 | InterruptedException e) { 118 117 if (!ignoreException) { 119 118 // Exception has to thrown in EDT to be shown to user … … 130 129 131 130 /** 132 * Can be overrid en if something needs to run after progress monitor is closed.131 * Can be overridden if something needs to run after progress monitor is closed. 133 132 */ 134 133 protected void afterFinish() {
Note:
See TracChangeset
for help on using the changeset viewer.