Skip to content

Instantly share code, notes, and snippets.

@sw-carlin
Created June 13, 2018 21:22
Show Gist options
  • Save sw-carlin/2037a3bb2f6279e6b0245ed2fbfd84a3 to your computer and use it in GitHub Desktop.
Save sw-carlin/2037a3bb2f6279e6b0245ed2fbfd84a3 to your computer and use it in GitHub Desktop.
ServiceStack exception to http status code mapping examples
appHost.Config = new HostConfig
{
MapExceptionToStatusCode = new Dictionary<Type, int>
{
[typeof(InvalidOperationException)] = 409
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment