microsoft/healthcare-shared-components

Public

mirrored from https://github.com/microsoft/healthcare-shared-componentsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/Microsoft.Health.Client/Authentication/Exceptions/FailToRetrieveTokenException.cs

16lines · modeblame

e7020796Abdullah Islam5 years ago1// -------------------------------------------------------------------------------------------------
2// Copyright (c) Microsoft Corporation. All rights reserved.
3// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.
4// -------------------------------------------------------------------------------------------------
5
6using System;
7
a7d18e80brandonpollett4 years ago8namespace Microsoft.Health.Client.Authentication.Exceptions;
a0a9c22bWill Sugarman4 years ago9
10public class FailToRetrieveTokenException : Exception
e7020796Abdullah Islam5 years ago11{
a0a9c22bWill Sugarman4 years ago12public FailToRetrieveTokenException(string message)
13: base(message)
e7020796Abdullah Islam5 years ago14{
15}
16}