io.github.spitmaster.warlock.exceptions.WarlockException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of warlock-spring-boot-starter Show documentation
Show all versions of warlock-spring-boot-starter Show documentation
warlock-spring-boot-starter is an annotation-driven concurrency tools library for java with Spring.
It is easy to use in Spring application
Just using annotation on your method , the concurrency lock problem would be solved
package io.github.spitmaster.warlock.exceptions;
/**
* Warlock 异常类
*
* @author zhouyijin
*/
public class WarlockException extends RuntimeException {
public WarlockException(String message) {
super(message);
}
public WarlockException(Throwable throwable) {
super(throwable);
}
public WarlockException(String message, Throwable throwable) {
super(message, throwable);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy