microsoft/healthcare-shared-components
Publicmirrored from https://github.com/microsoft/healthcare-shared-componentsAvailable
src/Microsoft.Health.Core/Exceptions/InvalidDefinitionException.cs
19lines · modeblame
aa9e284eAli5 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 Microsoft.Health.Abstractions.Exceptions; | |
| 7 | | |
a0a9c22bWill Sugarman4 years ago | 8 | namespace Microsoft.Health.Core.Exceptions; |
| 9 | | |
| 10 | /// <summary> | |
| 11 | /// The exception that is thrown when provided definition is invalid. | |
| 12 | /// </summary> | |
| 13 | public class InvalidDefinitionException : MicrosoftHealthException | |
aa9e284eAli5 years ago | 14 | { |
a0a9c22bWill Sugarman4 years ago | 15 | public InvalidDefinitionException(string message) |
| 16 | : base(message) | |
aa9e284eAli5 years ago | 17 | { |
| 18 | } | |
| 19 | } |