Class ConcurrentModificationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.pgcodekeeper.core.loader.jdbc.ConcurrentModificationException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorsConstructorDescriptionConstructs a new exception.ConcurrentModificationException(String message) Constructs a new exception with the specified detail message.ConcurrentModificationException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConcurrentModificationException
public ConcurrentModificationException()Constructs a new exception. -
ConcurrentModificationException
Constructs a new exception with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of the exception
-
ConcurrentModificationException
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message
-
ConcurrentModificationException
Constructs a new exception with the specified cause.- Parameters:
cause- the cause of the exception
-