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

com.github.sadstool.redissonaspectlock.error.LockException Maven / Gradle / Ivy

The newest version!
package com.github.sadstool.redissonaspectlock.error;

import com.github.sadstool.redissonaspectlock.attributes.LockAttributes;

public class LockException extends RuntimeException {

    private LockAttributes attributes;

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

    public LockException(String message, LockAttributes attributes) {
        this(message);
        this.attributes = attributes;
    }

    public LockAttributes getAttributes() {
        return attributes;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy