com.github.sadstool.redissonaspectlock.error.LockExceptionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson-aspect-lock Show documentation
Show all versions of redisson-aspect-lock Show documentation
redisson aspect lock for spring
The newest version!
package com.github.sadstool.redissonaspectlock.error;
import com.github.sadstool.redissonaspectlock.attributes.LockAttributes;
public class LockExceptionFactory {
public Exception create(LockAttributes attributes) {
return new LockException("Resource is locked", attributes);
}
}