Menso.Tools.Exceptions 0.0.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Menso.Tools.Exceptions --version 0.0.2.1
NuGet\Install-Package Menso.Tools.Exceptions -Version 0.0.2.1
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="Menso.Tools.Exceptions" Version="0.0.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Menso.Tools.Exceptions --version 0.0.2.1
#r "nuget: Menso.Tools.Exceptions, 0.0.2.1"
#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 Menso.Tools.Exceptions as a Cake Addin
#addin nuget:?package=Menso.Tools.Exceptions&version=0.0.2.1

// Install Menso.Tools.Exceptions as a Cake Tool
#tool nuget:?package=Menso.Tools.Exceptions&version=0.0.2.1

Tools.Exceptions

Helps avoid code complexity and improves readability

Quick Installation Guide

Install Package


dotnet add package Menso.Tools.Exceptions

Configuration (Optional)

public void ConfigureExceptionLaucher(this IServiceCollection services)
{
    ExceptionSettings.CreateExceptionHandler = exceptionInformation =>
    {
        // Crete your own exception and return it
        
        // sample
        var message = exceptionInformation.CustomMessage ?? exceptionInformation.DefaultMessage;
        var paramName = exceptionInformation.ParamName;
        return new ArgumentException(message, paramName, exceptionInformation.InnerException);
    };
}
public void ConfigureExceptionLaucher(this IServiceCollection services)
{
    ExceptionSettings.CreateHttpExceptionHandler = (statusCode, exceptionInformation) =>
    {
        // Crete your own exception and return it
        
        // sample
        var message = exceptionInformation.CustomMessage ?? $"{errorStatusCode}: {exceptionInformation.DefaultMessage}";
        return new HttpRequestException(message, exceptionInformation.InnerException, errorStatusCode);
    };
}

Usage

Use cases:

public void Sample()
{
    object? argument = null;
    var message = "sample message";
    var innerException = new Exception("Inner exception");
    
    Throw.When.BeNull(argument);
    Throw.When.BeNull(argument, message);
    Throw.When.BeNull(argument, message, innerException);
              
    Throw<CustomException>.When.BeNull(argument);
    Throw<CustomException>.When.BeNull(argument, message);
    Throw<CustomException>.When.BeNull(argument, message, innerException);    
}

<br>

We are open to suggestions and collaborations

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0

    • No dependencies.

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
1.0.0 2,341 11/30/2023
0.0.3.6 1,563 10/31/2023
0.0.3.5 6,891 8/3/2023
0.0.3.4 126 8/3/2023
0.0.3.3 238 7/31/2023
0.0.3.2 315 7/27/2023
0.0.3.1 135 7/18/2023
0.0.3 128 7/17/2023
0.0.2.1 132 7/11/2023
0.0.2 119 7/10/2023
0.0.1 142 7/7/2023