![JAR search and dependency download from the Maven repository](/logo.png)
org.multiverse.commitbarriers.CommitBarrierOpenException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multiverse-core Show documentation
Show all versions of multiverse-core Show documentation
Contains the core interfaces/classes of the Multiverse project. So no STM implementations
The newest version!
package org.multiverse.commitbarriers;
/**
* An IllegalStateException that indicates that an operation was executed on the CommitBarrier while it
* already is opened.
*
* @author Peter Veentjer.
*/
public class CommitBarrierOpenException extends IllegalStateException {
/**
* Creates a new CommitBarrierOpenException with the provided message.
*
* @param message the message
*/
public CommitBarrierOpenException(String message) {
super(message);
}
/**
* Creates a new CommitBarrierOpenException with the provided message and cause.
*
* @param message the message
* @param cause the cause
*/
public CommitBarrierOpenException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy