# HG changeset patch # User mullan # Date 1223401299 14400 # Node ID e213b0c021974f3c1db7a629c12bb99586ac5d38 # Parent 6d1f4b722acdd3ffe4004d87ba2f4e5755655b82 6752764: PIT B37: CertPath/CertPathValidatorTest/KeyParamsInheritanceTest failed Summary: fix regression introduced by 6465942 Reviewed-by: vinnie diff -r 6d1f4b722acd -r e213b0c02197 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); }