io.gitee.loulan_yxq.owner.http.exception.URISyntaxRuntimeException Maven / Gradle / Ivy
The newest version!
package io.gitee.loulan_yxq.owner.http.exception;
import io.gitee.loulan_yxq.owner.core.exception.BaseException;
/*********************************************************
** {@link java.net.URISyntaxException} 的运行时异常
**
** Date: Created in 2021/11/2 13:09
** @author loulan
** @version 0.0.0
*********************************************************/
public class URISyntaxRuntimeException extends BaseException {
public URISyntaxRuntimeException() {
super();
}
public URISyntaxRuntimeException(String message) {
super(message);
}
public URISyntaxRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public URISyntaxRuntimeException(Throwable cause) {
super(cause);
}
protected URISyntaxRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}