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

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));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy