com.microsoft.azure.kusto.ingest.exceptions.IngestionClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kusto-ingest Show documentation
Show all versions of kusto-ingest Show documentation
Kusto client library for ingesting data
// 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;
}
}