Skip to content

Instantly share code, notes, and snippets.

View sw-carlin's full-sized avatar

Carlin sw-carlin

  • ShiftWise
  • Portland, OR
View GitHub Profile
@sw-carlin
sw-carlin / MyHostConfig.cs
Created June 13, 2018 21:22
ServiceStack exception to http status code mapping examples
appHost.Config = new HostConfig
{
MapExceptionToStatusCode = new Dictionary<Type, int>
{
[typeof(InvalidOperationException)] = 409
}
}