FileDocCategorySizeDatePackage
ConcurrentModificationException.javaAPI DocAndroid 1.5 API1761Wed May 06 22:41:04 BST 2009java.util

ConcurrentModificationException

public class ConcurrentModificationException extends RuntimeException
An {@code ConcurrentModificationException} is thrown when a Collection is modified and an existing iterator on the Collection is used to modify the Collection as well.
see
java.lang.RuntimeException
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public ConcurrentModificationException()
Constructs a new {@code ConcurrentModificationException} with the current stack trace filled in.


                     
      
        /*empty*/
    
public ConcurrentModificationException(String detailMessage)
Constructs a new {@code ConcurrentModificationException} with the current stack trace and message filled in.

param
detailMessage the detail message for the exception.

        super(detailMessage);
    
Methods Summary