com.suchtool.nicelock.exception.LockFailException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nicelock-spring-boot-starter Show documentation
Show all versions of nicelock-spring-boot-starter Show documentation
nice distribution lock for SpringBoot project
package com.suchtool.nicelock.exception;
/**
* 已锁定异常
*/
public class LockFailException extends RuntimeException {
public LockFailException() {
super();
}
public LockFailException(String message) {
super(message);
}
public LockFailException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy