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/gui/layer/geoimage/ImageEntry.java

    r11745 r11746  
    1212import org.openstreetmap.josm.data.coor.LatLon;
    1313import org.openstreetmap.josm.tools.ExifReader;
     14import org.openstreetmap.josm.tools.JosmRuntimeException;
    1415
    1516import com.drew.imaging.jpeg.JpegMetadataReader;
     
    450451        try {
    451452            setExifTime(ExifReader.readTime(metadata));
    452         } catch (RuntimeException ex) {
     453        } catch (JosmRuntimeException | IllegalArgumentException | IllegalStateException ex) {
    453454            Main.warn(ex);
    454455            setExifTime(null);
Note: See TracChangeset for help on using the changeset viewer.