Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created June 21, 2018 01:01
[HttpGet("error/details")]
public IActionResult ErrorDetails()
{
ModelState.AddModelError("someProperty", "This property failed validation.");
var validation = new ValidationProblemDetails(ModelState);
throw new ProblemDetailsException(validation);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment