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
-
collection
- The collection that this is an enumeration of
-
newVersion
- The current version of the collection
-
oldVersion
- The version expected of the collection
-
CorruptedEnumerationException()
-
-
CorruptedEnumerationException(int, int, Collection, String)
-
collection
public Collection collection
- The collection that this is an enumeration of
oldVersion
public int oldVersion
- The version expected of the collection
newVersion
public int newVersion
- The current version of the collection
CorruptedEnumerationException
public CorruptedEnumerationException()
CorruptedEnumerationException
public CorruptedEnumerationException(int oldv,
int newv,
Collection coll,
String msg)
All Packages Class Hierarchy This Package Previous Next Index