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

org.kiwiproject.curator.exception.LockAcquisitionFailureException Maven / Gradle / Ivy

The newest version!
package org.kiwiproject.curator.exception;

/**
 * Exception class indicating that an exception was thrown by Curator while trying to obtain a ZooKeeper lock.
 */
public class LockAcquisitionFailureException extends LockAcquisitionException {

    public LockAcquisitionFailureException() {
    }

    public LockAcquisitionFailureException(String message) {
        super(message);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy