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

com.microsoft.azure.kusto.ingest.exceptions.IngestionClientException Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

package com.microsoft.azure.kusto.ingest.exceptions;

public class IngestionClientException extends Exception {
    private String ingestionSource;

    public String getIngestionSource() {
        return ingestionSource;
    }

    public IngestionClientException(String message) {
        super(message);
    }

    public IngestionClientException(String message, Throwable throwable) {
        super(message, throwable);
    }

    public IngestionClientException(String ingestionSource, String message, Exception exception) {
        this(message, exception);
        this.ingestionSource = ingestionSource;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy