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

io.xream.x7.base.exception.DistributionLockException Maven / Gradle / Ivy

package io.xream.x7.base.exception;

public class DistributionLockException extends RuntimeException{

    private String message;

    public String getMessage(){
        return this.message;
    }

    public DistributionLockException(){
        super();
    }

    public DistributionLockException(String message){
        super();
        this.message = message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy