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

cc.shacocloud.mirage.restful.exception.HttpRequestBindMissingException Maven / Gradle / Ivy

package cc.shacocloud.mirage.restful.exception;

import org.jetbrains.annotations.Nullable;

/**
 * http 请求绑定指定值时,值不存在并且没有设置默认值的情况下将抛出该例外
 *
 * @author 思追(shaco)
 */
public class HttpRequestBindMissingException extends HttpMessageConversionException {
    
    public HttpRequestBindMissingException(String msg) {
        super(msg);
    }
    
    public HttpRequestBindMissingException(String msg, @Nullable Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy