in.hocg.boot.cache.autoconfiguration.exception.DistributedLockException Maven / Gradle / Ivy
The newest version!
package in.hocg.boot.cache.autoconfiguration.exception;
import cn.hutool.core.util.StrUtil;
/**
* Created by hocgin on 2020/8/14
* email: [email protected]
*
* @author hocgin
*/
public class DistributedLockException extends RuntimeException {
public DistributedLockException(String message) {
super(message);
}
public DistributedLockException(String message, Object... params) {
this(StrUtil.format(message, params));
}
}