6752764: PIT B37: CertPath/CertPathValidatorTest/KeyParamsInheritanceTest failed
Summary: fix regression introduced by 6465942
Reviewed-by: vinnie
--- 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);
}