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

com.atlan.exception.ApiConnectionException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
/* SPDX-License-Identifier: Apache-2.0
   Copyright 2022 Atlan Pte. Ltd. */
package com.atlan.exception;

/**
 * Error that occurs when there is an intermittent issue with the API, such as a network outage or an inability
 * to connect due to an incorrect URL.
 */
public class ApiConnectionException extends AtlanException {
    private static final long serialVersionUID = 2L;

    public ApiConnectionException(ErrorCode error) {
        super(error, null);
    }

    public ApiConnectionException(ErrorCode error, Throwable e, String... params) {
        super(error, e, params);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy