Skip to content

Commit 5f348f4

Browse files
authored
feat: split errors to classes by types (#115)
Signed-off-by: Valentinas <[email protected]>
1 parent bd730a5 commit 5f348f4

8 files changed

+149
-2
lines changed

src/OpenFeature/Error/FeatureProviderException.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
namespace OpenFeature.Error
55
{
66
/// <summary>
7-
/// Used to represent an abnormal error when evaluating a flag. This exception should be thrown
8-
/// when evaluating a flag inside a IFeatureFlag provider
7+
/// Used to represent an abnormal error when evaluating a flag.
8+
/// This exception should be thrown when evaluating a flag inside a IFeatureFlag provider
99
/// </summary>
1010
public class FeatureProviderException : Exception
1111
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
using OpenFeature.Constant;
3+
4+
namespace OpenFeature.Error
5+
{
6+
/// <summary>
7+
/// Provider was unable to find the flag error when evaluating a flag.
8+
/// </summary>
9+
public class FlagNotFoundException : FeatureProviderException
10+
{
11+
/// <summary>
12+
/// Initialize a new instance of the <see cref="FlagNotFoundException"/> class
13+
/// </summary>
14+
/// <param name="message">Exception message</param>
15+
/// <param name="innerException">Optional inner exception</param>
16+
public FlagNotFoundException(string message = null, Exception innerException = null)
17+
: base(ErrorType.FlagNotFound, message, innerException)
18+
{
19+
}
20+
}
21+
}
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
using OpenFeature.Constant;
3+
4+
namespace OpenFeature.Error
5+
{
6+
/// <summary>
7+
/// Abnormal execution of the provider when evaluating a flag.
8+
/// </summary>
9+
public class GeneralException : FeatureProviderException
10+
{
11+
/// <summary>
12+
/// Initialize a new instance of the <see cref="GeneralException"/> class
13+
/// </summary>
14+
/// <param name="message">Exception message</param>
15+
/// <param name="innerException">Optional inner exception</param>
16+
public GeneralException(string message = null, Exception innerException = null)
17+
: base(ErrorType.General, message, innerException)
18+
{
19+
}
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
using OpenFeature.Constant;
3+
4+
namespace OpenFeature.Error
5+
{
6+
/// <summary>
7+
/// Context does not satisfy provider requirements when evaluating a flag.
8+
/// </summary>
9+
public class InvalidContextException : FeatureProviderException
10+
{
11+
/// <summary>
12+
/// Initialize a new instance of the <see cref="InvalidContextException"/> class
13+
/// </summary>
14+
/// <param name="message">Exception message</param>
15+
/// <param name="innerException">Optional inner exception</param>
16+
public InvalidContextException(string message = null, Exception innerException = null)
17+
: base(ErrorType.InvalidContext, message, innerException)
18+
{
19+
}
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
using OpenFeature.Constant;
3+
4+
namespace OpenFeature.Error
5+
{
6+
/// <summary>
7+
/// Provider failed to parse the flag response when evaluating a flag.
8+
/// </summary>
9+
public class ParseErrorException : FeatureProviderException
10+
{
11+
/// <summary>
12+
/// Initialize a new instance of the <see cref="ParseErrorException"/> class
13+
/// </summary>
14+
/// <param name="message">Exception message</param>
15+
/// <param name="innerException">Optional inner exception</param>
16+
public ParseErrorException(string message = null, Exception innerException = null)
17+
: base(ErrorType.ParseError, message, innerException)
18+
{
19+
}
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
using OpenFeature.Constant;
3+
4+
namespace OpenFeature.Error
5+
{
6+
/// <summary>
7+
/// Provider has yet been initialized when evaluating a flag.
8+
/// </summary>
9+
public class ProviderNotReadyException : FeatureProviderException
10+
{
11+
/// <summary>
12+
/// Initialize a new instance of the <see cref="ProviderNotReadyException"/> class
13+
/// </summary>
14+
/// <param name="message">Exception message</param>
15+
/// <param name="innerException">Optional inner exception</param>
16+
public ProviderNotReadyException(string message = null, Exception innerException = null)
17+
: base(ErrorType.ProviderNotReady, message, innerException)
18+
{
19+
}
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
using OpenFeature.Constant;
3+
4+
namespace OpenFeature.Error
5+
{
6+
/// <summary>
7+
/// Context does not contain a targeting key and the provider requires one when evaluating a flag.
8+
/// </summary>
9+
public class TargetingKeyMissingException : FeatureProviderException
10+
{
11+
/// <summary>
12+
/// Initialize a new instance of the <see cref="TargetingKeyMissingException"/> class
13+
/// </summary>
14+
/// <param name="message">Exception message</param>
15+
/// <param name="innerException">Optional inner exception</param>
16+
public TargetingKeyMissingException(string message = null, Exception innerException = null)
17+
: base(ErrorType.TargetingKeyMissing, message, innerException)
18+
{
19+
}
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
using OpenFeature.Constant;
3+
4+
namespace OpenFeature.Error
5+
{
6+
/// <summary>
7+
/// Request type does not match the expected type when evaluating a flag.
8+
/// </summary>
9+
public class TypeMismatchException : FeatureProviderException
10+
{
11+
/// <summary>
12+
/// Initialize a new instance of the <see cref="TypeMismatchException"/> class
13+
/// </summary>
14+
/// <param name="message">Exception message</param>
15+
/// <param name="innerException">Optional inner exception</param>
16+
public TypeMismatchException(string message = null, Exception innerException = null)
17+
: base(ErrorType.TypeMismatch, message, innerException)
18+
{
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)