Write out the high-level API I need.

This commit is contained in:
Pieter-Jan Briers
2022-03-28 01:13:24 +02:00
parent abe853722d
commit d19f9c9e5b
7 changed files with 285 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
namespace SpaceWizards.Sodium;
public sealed class SodiumException : Exception
{
public SodiumException()
{
}
public SodiumException(string message) : base(message)
{
}
public SodiumException(string message, Exception inner) : base(message, inner)
{
}
}