-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathFeatureManagementError.cs
36 lines (32 loc) · 1.03 KB
/
FeatureManagementError.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
//
namespace Microsoft.FeatureManagement
{
/// <summary>
/// An error that can occur during feature management.
/// </summary>
public enum FeatureManagementError
{
/// <summary>
/// A feature filter that was listed for feature evaluation was not found.
/// </summary>
MissingFeatureFilter,
/// <summary>
/// A feature filter configured for the feature being evaluated is an ambiguous reference to multiple registered feature filters.
/// </summary>
AmbiguousFeatureFilter,
/// <summary>
/// A feature that was requested for evaluation was not found.
/// </summary>
MissingFeature,
/// <summary>
/// There was a conflict in the feature management system.
/// </summary>
Conflict,
/// <summary>
/// The given configuration setting was invalid.
/// </summary>
InvalidConfigurationSetting
}
}