Ignore:
Timestamp:
2016-05-17T02:02:30+02:00 (8 years ago)
Author:
Don-vip
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r10217 r10235  
    2222import java.security.AllPermission;
    2323import java.security.CodeSource;
     24import java.security.GeneralSecurityException;
    2425import java.security.KeyStoreException;
    2526import java.security.NoSuchAlgorithmException;
     
    413414        try {
    414415            CertificateAmendment.addMissingCertificates();
    415         } catch (IOException ex) {
     416        } catch (IOException | GeneralSecurityException ex) {
    416417            ex.printStackTrace();
    417418            Main.warn(getErrorMessage(Utils.getRootCause(ex)));
Note: See TracChangeset for help on using the changeset viewer.