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.Core/Exceptions/InvalidDefinitionException.cs

19lines · modecode

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
6using Microsoft.Health.Abstractions.Exceptions;
7
8namespace Microsoft.Health.Core.Exceptions;
9
10/// <summary>
11/// The exception that is thrown when provided definition is invalid.
12/// </summary>
13public class InvalidDefinitionException : MicrosoftHealthException
14{
15 public InvalidDefinitionException(string message)
16 : base(message)
17 {
18 }
19}
20