You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by re...@apache.org on 2010/09/14 10:39:05 UTC

svn commit: r996790 - /harmony/enhanced/java/branches/java6/classlib/modules/security/src/main/java/common/java/security/UnrecoverableKeyException.java

Author: regisxu
Date: Tue Sep 14 08:39:04 2010
New Revision: 996790

URL: http://svn.apache.org/viewvc?rev=996790&view=rev
Log:
Apply patch for HARMONY-6629: [java6][classlib]According to the java6 spec, UnrecoverableKeyException should extend UnrecoverableEntryException instead of GeneralSecurityException

Modified:
    harmony/enhanced/java/branches/java6/classlib/modules/security/src/main/java/common/java/security/UnrecoverableKeyException.java

Modified: harmony/enhanced/java/branches/java6/classlib/modules/security/src/main/java/common/java/security/UnrecoverableKeyException.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/java6/classlib/modules/security/src/main/java/common/java/security/UnrecoverableKeyException.java?rev=996790&r1=996789&r2=996790&view=diff
==============================================================================
--- harmony/enhanced/java/branches/java6/classlib/modules/security/src/main/java/common/java/security/UnrecoverableKeyException.java (original)
+++ harmony/enhanced/java/branches/java6/classlib/modules/security/src/main/java/common/java/security/UnrecoverableKeyException.java Tue Sep 14 08:39:04 2010
@@ -23,7 +23,7 @@ package java.security;
  * 
  * @see KeyStore
  */
-public class UnrecoverableKeyException extends GeneralSecurityException {
+public class UnrecoverableKeyException extends UnrecoverableEntryException {
 
     private static final long serialVersionUID = 7275063078190151277L;