TriggerExceptionHandler 0.1.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package TriggerExceptionHandler --version 0.1.3
NuGet\Install-Package TriggerExceptionHandler -Version 0.1.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TriggerExceptionHandler" Version="0.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TriggerExceptionHandler --version 0.1.3
#r "nuget: TriggerExceptionHandler, 0.1.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TriggerExceptionHandler as a Cake Addin
#addin nuget:?package=TriggerExceptionHandler&version=0.1.3

// Install TriggerExceptionHandler as a Cake Tool
#tool nuget:?package=TriggerExceptionHandler&version=0.1.3

TriggerExceptionHandler

Nuget

Super easy ASP.NET Core Exception Handler & ModelState validator for Web API services

Install-Package TriggerExceptionHandler
dotnet add package TriggerExceptionHandler

Some exceptions returns different HttpStatusCode:

  • UnauthorizedAccessException: Unauthorized (401)
  • KeyNotFoundException: NotFound (404)

TODO list

  • ILogger
  • Custom Dictionary<Exception type, HttpStatusCode>
  • Custom serializer
  • Conditional details
  • Extend status codes

Startup.cs

public void ConfigureServices(IServiceCollection services)
{
    services.AddMvc();
    services.TriggerInvalidModelStateResponse();
}

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
    // custom http status codes
    //app.UseTriggerExceptionHandler(nameof(TriggerExceptionHandler), exceptionsCode: new Ext2HttpCode { { typeof(ArgumentException), HttpStatusCode.Ambiguous } });

    app.UseTriggerExceptionHandler("ApplicationName");
    app.UseMvc();
}

Example responses

Exceptions

{
    "type": "Exception",
    "title": "Expected exception message",
    "status": 500,
    "detail": "...stack trace (if debugger is attached)",
    "instance": "urn:ApplicationName:1299978476"
}

Dto Models

{
    "errors": {
        "Name": [
            "The Name field is required."
        ]
    },
    "type": "ValidationProblemDetails",
    "title": "Request Validation Error",
    "status": 400,
    "detail": "One or more validation errors occurred",
    "instance": "urn:ApplicationName:759630415"
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.9 236 7/22/2023
6.0.8 167 7/22/2023
3.1.2 618 10/7/2020
3.1.1 715 2/4/2020
3.0.2 608 12/13/2019
3.0.1 626 10/28/2019
3.0.0 615 9/30/2019
0.1.3 662 8/23/2019
0.1.1 622 8/2/2019
0.1.0 638 7/11/2019