Class ConcurrentModificationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.pgcodekeeper.core.loader.jdbc.ConcurrentModificationException
All Implemented Interfaces:
Serializable

public final class ConcurrentModificationException extends RuntimeException
Exception thrown when concurrent modification of a resource is detected. Indicates that a modification conflict occurred while multiple threads or processes were attempting to modify the same resource.
See Also:
  • Constructor Details

    • ConcurrentModificationException

      public ConcurrentModificationException()
      Constructs a new exception.
    • ConcurrentModificationException

      public ConcurrentModificationException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message
      cause - the cause of the exception
    • ConcurrentModificationException

      public ConcurrentModificationException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - the detail message
    • ConcurrentModificationException

      public ConcurrentModificationException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - the cause of the exception