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

com.zhangyingwei.cockroach.http.exception.Http407Exception Maven / Gradle / Ivy

There is a newer version: 1.0.6-Beta
Show newest version
package com.zhangyingwei.cockroach.http.exception;

import com.zhangyingwei.cockroach.utils.CockroachUtils;

/**
 * Created by zhangyw on 2017/8/17.
 * ProxyConfig Authentication Required/代理服务器认证要求
 */
public class Http407Exception extends Http40XException  {
    private static final int CODE = 407;
    public Http407Exception() {
    }

    public Http407Exception(String message) {
        super(CockroachUtils.exceptionMessage(CODE,message));
    }

    public Http407Exception(String message, Throwable cause) {
        super(CockroachUtils.exceptionMessage(CODE,message), cause);
    }

    public Http407Exception(Throwable cause) {
        super(cause);
    }

    public Http407Exception(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(CockroachUtils.exceptionMessage(CODE,message), cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy