ASP. NET Ядро предоставило ProblemDetails class и ValidationProblemDetails для обработки деталей ошибки с ответом HTTP на основе RF C 7807
Вы можете прочитать spe c здесь https://tools.ietf.org/html/rfc7807
В вашем случае вы можете создать промежуточное программное обеспечение, которое захватит ваше пользовательское исключение и вернет ProblemDetails
это будет что-то вроде этого
public class CustomExceptionHandlerMiddleware
{
private readonly RequestDelegate next;
private readonly IHostEnvironment host;
public CustomExceptionHandlerMiddleware(RequestDelegate next, IHostEnvironment host)
{
this.next = next;
this.host = host;
}
public async Task Invoke(HttpContext context)
{
try
{
var body = context.Response.StatusCode;
await next(context);
}
catch (Exception ex)
{
await HandleExceptionAsync(context, ex);
}
}
private Task HandleExceptionAsync(HttpContext context, Exception exception)
{
var problemDetail = new ProblemDetails()
{
Title = exception.Message,
Detail = exception.StackTrace,
Instance = context.Request.Path,
Status = StatusCodes.Status500InternalServerError,
};
// for security reason, not leaking any implementation/error detail in production
if (host.IsProduction())
{
problemDetail.Detail = "Unexpected error occured";
}
context.Response.StatusCode = StatusCodes.Status500InternalServerError;
context.Response.ContentType = "applications/problem+json";
return context.Response.WriteAsync(JsonConvert.SerializeObject(problemDetail));
}
}