microsoft/healthcare-shared-components
Publicmirrored from https://github.com/microsoft/healthcare-shared-componentsAvailable
src/Microsoft.Health.Client/Authentication/Exceptions/FailToRetrieveTokenException.cs
16lines · modeblame
e7020796Abdullah Islam5 years ago | 1 | // ------------------------------------------------------------------------------------------------- |
| 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 | | |
| 6 | using System; | |
| 7 | | |
a7d18e80brandonpollett4 years ago | 8 | namespace Microsoft.Health.Client.Authentication.Exceptions; |
a0a9c22bWill Sugarman4 years ago | 9 | |
| 10 | public class FailToRetrieveTokenException : Exception | |
e7020796Abdullah Islam5 years ago | 11 | { |
a0a9c22bWill Sugarman4 years ago | 12 | public FailToRetrieveTokenException(string message) |
| 13 | : base(message) | |
e7020796Abdullah Islam5 years ago | 14 | { |
| 15 | } | |
| 16 | } |