Menso.Tools.Exceptions
0.0.3.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Menso.Tools.Exceptions --version 0.0.3.2
NuGet\Install-Package Menso.Tools.Exceptions -Version 0.0.3.2
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.3.2" />
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.3.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Menso.Tools.Exceptions, 0.0.3.2"
#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.3.2 // Install Menso.Tools.Exceptions as a Cake Tool #tool nuget:?package=Menso.Tools.Exceptions&version=0.0.3.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.