提交 3700f3b7 编写于 作者: M mullan

6894461: OCSP Checker should not wrap all Exception as "Unable to send OCSP...

6894461: OCSP Checker should not wrap all Exception as "Unable to send OCSP request."(introduced by #6885667)
Reviewed-by: vinnie, xuelei
上级 70147f8d
...@@ -335,10 +335,13 @@ class OCSPChecker extends PKIXCertPathChecker { ...@@ -335,10 +335,13 @@ class OCSPChecker extends PKIXCertPathChecker {
response = OCSP.check(Collections.singletonList(certId), uri, response = OCSP.check(Collections.singletonList(certId), uri,
responderCert, pkixParams.getDate()); responderCert, pkixParams.getDate());
} catch (Exception e) { } catch (Exception e) {
// Wrap all exceptions in CertPathValidatorException so that if (e instanceof CertPathValidatorException) {
// we can fallback to CRLs, if enabled. throw (CertPathValidatorException) e;
throw new CertPathValidatorException } else {
("Unable to send OCSP request", e); // Wrap exceptions in CertPathValidatorException so that
// we can fallback to CRLs, if enabled.
throw new CertPathValidatorException(e);
}
} }
RevocationStatus rs = (RevocationStatus) response.getSingleResponse(certId); RevocationStatus rs = (RevocationStatus) response.getSingleResponse(certId);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册