AspNetCore.Docs.Samples/fundamentals/middleware/problem-details-service/MathErrorFeature.cs

13 lines
204 B
C#

// Custom Http Request Feature
class MathErrorFeature
{
public MathErrorType MathError { get; set; }
}
// Custom math errors
enum MathErrorType
{
DivisionByZeroError,
NegativeRadicandError
}