org.mod4j.runtime.exception.ConcurrentUpdateException Maven / Gradle / Ivy
/**
*
*/
package org.mod4j.runtime.exception;
/**
* Thrown when a service is called that modifies data that was updated concurrently by another agent after the current
* agent received the data being updated.
*
* @author Eric Jan Malotaux
*/
public class ConcurrentUpdateException extends ServiceException {
/**
* {@inheritDoc}
*/
public ConcurrentUpdateException() {
super();
}
/**
* {@inheritDoc}
*/
public ConcurrentUpdateException(String message, Throwable cause) {
super(message, cause);
}
/**
* {@inheritDoc}
*/
public ConcurrentUpdateException(String message) {
super(message);
}
/**
* {@inheritDoc}
*/
public ConcurrentUpdateException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy