Getting started
Add NuGet package
This package is available on NuGet: PPWCode.Vernacular.Exceptions.IV.
You can use your IDE to add it as a dependency to your project, or manually add it in the .csproj file. This would look similar to the following:
<Project Sdk="Microsoft.NET.Sdk">
<!-- ... -->
<ItemGroup>
<!-- nuget package dependencies -->
<PackageReference Include="PPWCode.Vernacular.Exceptions.IV" Version="2.0.0" />
</ItemGroup>
<!-- ... -->
</Project>
After the package is added, you can use the exception classes from PPWCode.Vernacular.Exceptions.IV in your code.
You could either use the exceptions as defined in the package directly, or create custom exceptions inside your code that derive from these exceptions. See the section Base Exception Types for more information about the base exceptions provided and their intended use.