cn.lingyangwl.framework.lock.exception.UnLockException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lock-spring-boot-starter Show documentation
Show all versions of lock-spring-boot-starter Show documentation
lingyang framework 适用所有java项目的公共库, 方便快速集成和使用, 提供工作效率
The newest version!
package cn.lingyangwl.framework.lock.exception;
import cn.lingyangwl.framework.tool.core.exception.BaseException;
/**
* @author shenguangyang47
*/
public class UnLockException extends BaseException {
public UnLockException(String message) {
super(message);
}
}