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

xyz.block.ftl.LeaseFailedException Maven / Gradle / Ivy

There is a newer version: 0.368.1
Show newest version
package xyz.block.ftl;

/**
 * Checked exception that is thrown when a lease cannot be acquired
 */
public class LeaseFailedException extends Exception {

    public LeaseFailedException() {
    }

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

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

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

    public LeaseFailedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy