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.