All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class collections.CorruptedEnumerationException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----java.util.NoSuchElementException
                                   |
                                   +----collections.CorruptedEnumerationException

public class CorruptedEnumerationException
extends NoSuchElementException
CorruptedEnumerationException is thrown by CollectionEnumeration nextElement if a versioning inconsistency is detected in the process of returning the next element


Variable Index

 o collection
The collection that this is an enumeration of
 o newVersion
The current version of the collection
 o oldVersion
The version expected of the collection

Constructor Index

 o CorruptedEnumerationException()
 o CorruptedEnumerationException(int, int, Collection, String)

Variables

 o collection
 public Collection collection
The collection that this is an enumeration of

 o oldVersion
 public int oldVersion
The version expected of the collection

 o newVersion
 public int newVersion
The current version of the collection

Constructors

 o CorruptedEnumerationException
 public CorruptedEnumerationException()
 o CorruptedEnumerationException
 public CorruptedEnumerationException(int oldv,
                                      int newv,
                                      Collection coll,
                                      String msg)

All Packages  Class Hierarchy  This Package  Previous  Next  Index