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

com.microsoft.azure.kusto.data.exceptions.KustoDataExceptionBase Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
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