All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cc.shacocloud.mirage.web.exception.HttpRequestBindingException Maven / Gradle / Ivy

package cc.shacocloud.mirage.web.exception;

/**
 * 致命的绑定异常,当我们想要将绑定异常视为不可恢复时抛出
 */
public class HttpRequestBindingException extends HttpMessageConversionException {

    public HttpRequestBindingException(String msg) {
        super(msg);
    }

    public HttpRequestBindingException(String msg, Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy