jdk/src/share/classes/sun/security/provider/certpath/ForwardState.java
changeset 10419 12c063b39232
parent 10336 0bb1999251f8
child 12860 9ffbd4e43413
child 11902 a94ba35d9c4a
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
   260              */
   260              */
   261             clonedState.subjectNamesTraversed
   261             clonedState.subjectNamesTraversed
   262                 = (HashSet<GeneralNameInterface>)subjectNamesTraversed.clone();
   262                 = (HashSet<GeneralNameInterface>)subjectNamesTraversed.clone();
   263             return clonedState;
   263             return clonedState;
   264         } catch (CloneNotSupportedException e) {
   264         } catch (CloneNotSupportedException e) {
   265             throw new InternalError(e.toString());
   265             throw new InternalError(e.toString(), e);
   266         }
   266         }
   267     }
   267     }
   268 }
   268 }