UNPKG

azure-kusto-data

Version:
19 lines 595 B
// 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