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

13 lines
204 B
C#
Raw Normal View History

2022-09-09 02:04:44 +08:00
// Custom Http Request Feature
class MathErrorFeature
{
public MathErrorType MathError { get; set; }
}
2022-09-20 08:05:18 +08:00
// Custom math errors
enum MathErrorType
{
DivisionByZeroError,
NegativeRadicandError
}