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

com.backblaze.b2.client.exceptions.B2ConnectFailedException Maven / Gradle / Ivy

Go to download

The core logic for B2 SDK for Java. Does not include any implementations of B2WebApiClient.

There is a newer version: 6.3.0
Show newest version
/*
 * Copyright 2017, Backblaze Inc. All Rights Reserved.
 * License https://www.backblaze.com/using_b2_code.html
 */
package com.backblaze.b2.client.exceptions;

/**
 * B2ConnectFailedException represents a failure to connect to the
 * B2 servers.  If this persists, there's probably an issue with
 * your network.
 *
 * Note that this exception is generated locally by the SDK and
 * has a non-standard STATUS code.
 */
public class B2ConnectFailedException extends B2NetworkBaseException {
    static final int STATUS = 901;

    public B2ConnectFailedException(String code,
                                    Integer retryAfterSecondsOrNull,
                                    String message) {
        this(code, retryAfterSecondsOrNull, message, null);
    }

    public B2ConnectFailedException(String code,
                                    Integer retryAfterSecondsOrNull,
                                    String message,
                                    Throwable cause) {
        super(code, STATUS, retryAfterSecondsOrNull, message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy