OpenJDK / jdk7 / jdk7 / jdk
changeset 675:486b917ed417
6752764: PIT B37: CertPath/CertPathValidatorTest/KeyParamsInheritanceTest failed
Summary: fix regression introduced by 6465942
Reviewed-by: vinnie
author | mullan |
---|---|
date | Tue, 07 Oct 2008 13:41:39 -0400 |
parents | 80fe10573687 |
children | 3c234822b837 |
files | src/share/classes/sun/security/provider/certpath/BasicChecker.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/share/classes/sun/security/provider/certpath/BasicChecker.java Thu Sep 11 14:05:16 2008 -0400 +++ b/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); }