< prev index next >

src/java.base/share/classes/sun/security/provider/certpath/PKIXMasterCertPathValidator.java

Print this page

        

*** 129,140 **** " validation succeeded"); } } catch (CertPathValidatorException cpve) { throw new CertPathValidatorException(cpve.getMessage(), ! cpve.getCause(), cpOriginal, cpSize - (i + 1), ! cpve.getReason()); } } if (!unresCritExts.isEmpty()) { throw new CertPathValidatorException("unrecognized " + --- 129,140 ---- " validation succeeded"); } } catch (CertPathValidatorException cpve) { throw new CertPathValidatorException(cpve.getMessage(), ! (cpve.getCause() != null) ? cpve.getCause() : cpve, ! cpOriginal, cpSize - (i + 1), cpve.getReason()); } } if (!unresCritExts.isEmpty()) { throw new CertPathValidatorException("unrecognized " +
< prev index next >