Ignore:
Timestamp:
2016-12-09T23:31:13+01:00 (7 years ago)
Author:
Don-vip
Message:

sonar - squid:S00112 - Generic exceptions should never be thrown: define JosmRuntimeException

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2GridShiftFileWrapper.java

    r10212 r11374  
    66
    77import org.openstreetmap.josm.io.CachedFile;
     8import org.openstreetmap.josm.tools.JosmRuntimeException;
    89
    910/**
     
    5758                instance.loadGridShiftFile(is, false);
    5859            } catch (IOException e) {
    59                 throw new RuntimeException(e);
     60                throw new JosmRuntimeException(e);
    6061            }
    6162        }
Note: See TracChangeset for help on using the changeset viewer.