com.github.houbb.web.common.exception.ServiceRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-common Show documentation
Show all versions of web-common Show documentation
The web-common tool for java.
package com.github.houbb.web.common.exception;
/**
* @author binbin.hou
* @since 0.0.1
*/
public class ServiceRuntimeException extends RuntimeException {
public ServiceRuntimeException() {
}
public ServiceRuntimeException(String message) {
super(message);
}
public ServiceRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public ServiceRuntimeException(Throwable cause) {
super(cause);
}
public ServiceRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}