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/actions/JoinAreasAction.java

    r11731 r11746  
    11271127                findBoundaryPolygonsStartingWith(discardedResult, traverser, result, startWay);
    11281128            }
    1129         } catch (Throwable t) {
     1129        } catch (JosmRuntimeException | IllegalArgumentException | IllegalStateException t) {
    11301130            throw BugReport.intercept(t).put("traverser", traverser);
    11311131        }
     
    11831183                }
    11841184            }
    1185         } catch (Throwable t) {
     1185        } catch (JosmRuntimeException | IllegalArgumentException | IllegalStateException t) {
    11861186            throw BugReport.intercept(t).put("path", path);
    11871187        }
Note: See TracChangeset for help on using the changeset viewer.