xyz.erupt.core.exception.EruptWebApiRuntimeException Maven / Gradle / Ivy
package xyz.erupt.core.exception;
import lombok.Getter;
/**
* @author YuePeng
* date 2020-09-30
*/
@Getter
public class EruptWebApiRuntimeException extends RuntimeException {
public EruptWebApiRuntimeException(String message) {
super(message);
}
public EruptWebApiRuntimeException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy