org.palo.api.impl.utils
Class ListModifiedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.palo.api.impl.utils.ListModifiedException
All Implemented Interfaces:
java.io.Serializable

public class ListModifiedException
extends java.lang.RuntimeException

Thrown if an ArrayList iterator detects that someone else has concurrently modified a container. The concurrent modification checking is fail-fast and not synchronized. Thus it is not reliable.

Version:
$Id: ListModifiedException.html,v 1.8 2009/07/09 11:01:47 ArndHouben Exp $
See Also:
Serialized Form

Constructor Summary
ListModifiedException()
          Constructs a ListModified exception.
ListModifiedException(java.lang.String what)
          Constructs an ArrayListModified exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ListModifiedException

public ListModifiedException()
Constructs a ListModified exception.


ListModifiedException

public ListModifiedException(java.lang.String what)
Constructs an ArrayListModified exception.

Parameters:
what - a detailed message for the exception.