dogtagpki / pki

The Dogtag Certificate System is an enterprise-class Certificate Authority (CA) which supports all aspects of certificate lifecycle management, including key archival, OCSP and smartcard management.
https://www.dogtagpki.org
GNU General Public License v2.0
378 stars 138 forks source link

Remove redundant exceptions in PKIConnection #1716

Open pki-bot opened 4 years ago

pki-bot commented 4 years ago

This issue was migrated from Pagure Issue #1153. Originally filed by edewata (@edewata) on 2014-09-10 22:22:07:


The PKIConnection contains the following method:

@Override
public Socket connectSocket(Socket sock,
        InetSocketAddress remoteAddress,
        InetSocketAddress localAddress,
        HttpParams params)
        throws IOException,
        UnknownHostException,
        ConnectTimeoutException {

    ....
}

The UnknownHostException and ConnectTimeoutException can be removed from the exception list because they both inherit from IOException. This will remove explicit dependency on Apache/Jakarta Commons Client library.

pki-bot commented 4 years ago

Comment from mharmsen (@mharmsen) at 2014-09-24 20:50:17

Per Dogtag 10.2.3 Triage meeting of 09/24/2014 - proposed Milestone: 10.2.3

pki-bot commented 4 years ago

Comment from mharmsen (@mharmsen) at 2015-01-15 01:17:19

Per Dogtag 10.2.X meeting of 01/14/2015: Milestone 10.3

pki-bot commented 4 years ago

Comment from edewata (@edewata) at 2017-02-27 14:10:16

Metadata Update from @edewata: