azure-kusto-data
Version:
Azure Data Explorer Query SDK
19 lines • 595 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
export class KustoAuthenticationError extends Error {
constructor(message, inner, tokenProviderName, context) {
super(message);
this.inner = inner;
this.tokenProviderName = tokenProviderName;
this.context = context;
this.name = "KustoAuthenticationError";
}
}
export class ThrottlingError extends Error {
constructor(message, inner) {
super(message);
this.inner = inner;
this.name = "ThrottlingError";
}
}
//# sourceMappingURL=errors.js.map