com.github.dreamroute.locker.exception.LockerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of locker-spring-boot-starter Show documentation
Show all versions of locker-spring-boot-starter Show documentation
Parent pom providing dependency and plugin management for applications built with Maven
The newest version!
package com.github.dreamroute.locker.exception;
/**
* 异常
*
* @author w.dehi
*/
public class LockerException extends RuntimeException {
public LockerException() {}
public LockerException(String message) {
super(message);
}
public LockerException(String message, Throwable cause) {
super(message, cause);
}
public LockerException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy