
io.leopard.core.exception.other.ServiceNotAvailableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leopard-lang Show documentation
Show all versions of leopard-lang Show documentation
异常类、Util类、Leopard自定义的数据类型等
package io.leopard.core.exception.other;
import io.leopard.core.exception.LeopardRuntimeException;
/**
* 服务不可用(系统维护中)
*
* @author 阿海
*/
public class ServiceNotAvailableException extends LeopardRuntimeException {
private static final long serialVersionUID = 1L;
public ServiceNotAvailableException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy