Ignore:
Timestamp:
2017-03-19T02:26:34+01:00 (7 years ago)
Author:
Don-vip
Message:

PMD - Strict Exceptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/DatasetConsistencyTest.java

    r10627 r11746  
    99
    1010import org.openstreetmap.josm.Main;
     11import org.openstreetmap.josm.tools.JosmRuntimeException;
    1112import org.openstreetmap.josm.tools.Utils;
    1213
     
    212213            }
    213214
    214         } catch (RuntimeException e) {
     215        } catch (JosmRuntimeException | IllegalArgumentException | IllegalStateException e) {
    215216            writer.println("Exception during dataset integrity test:");
    216217            e.printStackTrace(writer);
Note: See TracChangeset for help on using the changeset viewer.