com.microsoft.azure.kusto.data.exceptions.KustoDataExceptionBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kusto-data Show documentation
Show all versions of kusto-data Show documentation
Kusto client library for executing queries and retrieving data
package com.microsoft.azure.kusto.data.exceptions;
public abstract class KustoDataExceptionBase extends Exception {
private final String ingestionSource;
private final boolean isPermanent;
protected KustoDataExceptionBase(String ingestionSource, String message, Exception exception, boolean isPermanent) {
super(message, exception);
this.ingestionSource = ingestionSource;
this.isPermanent = isPermanent;
}
public boolean isPermanent() {
return isPermanent;
}
public String getIngestionSource() {
return ingestionSource;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy