Write out the high-level API I need.
This commit is contained in:
16
SpaceWizards.Sodium/SodiumException.cs
Normal file
16
SpaceWizards.Sodium/SodiumException.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user