All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.multiverse.commitbarriers.CommitBarrierOpenException Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package org.multiverse.commitbarriers;

/**
 * An IllegalStateException that indicates that an operation was executed on the CommitBarrier while it
 * already
 *
 * @author Peter Veentjer.
 */
public class CommitBarrierOpenException extends IllegalStateException {

    public CommitBarrierOpenException() {
    }

    public CommitBarrierOpenException(String s) {
        super(s);
    }

    public CommitBarrierOpenException(String message, Throwable cause) {
        super(message, cause);
    }

    public CommitBarrierOpenException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy