6752764: PIT B37: CertPath/CertPathValidatorTest/KeyParamsInheritanceTest failed
authormullan
Tue, 07 Oct 2008 13:41:39 -0400
changeset 1451 e213b0c02197
parent 1238 6d1f4b722acd
child 1452 6cd84bc82e68
6752764: PIT B37: CertPath/CertPathValidatorTest/KeyParamsInheritanceTest failed Summary: fix regression introduced by 6465942 Reviewed-by: vinnie
jdk/src/share/classes/sun/security/provider/certpath/BasicChecker.java
--- a/jdk/src/share/classes/sun/security/provider/certpath/BasicChecker.java	Thu Sep 11 14:05:16 2008 -0400
+++ b/jdk/src/share/classes/sun/security/provider/certpath/BasicChecker.java	Tue Oct 07 13:41:39 2008 -0400
@@ -162,7 +162,7 @@
             throw new CertPathValidatorException
                 (msg + " check failed", e, null, -1,
                  BasicReason.INVALID_SIGNATURE);
-        } catch (GeneralSecurityException e) {
+        } catch (Exception e) {
             throw new CertPathValidatorException(msg + " check failed", e);
         }