Write out the high-level API I need.
This commit is contained in:
17
SpaceWizards.Sodium/SodiumInitException.cs
Normal file
17
SpaceWizards.Sodium/SodiumInitException.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace SpaceWizards.Sodium;
|
||||
|
||||
[Serializable]
|
||||
public sealed class SodiumInitException : Exception
|
||||
{
|
||||
public SodiumInitException()
|
||||
{
|
||||
}
|
||||
|
||||
public SodiumInitException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public SodiumInitException(string message, Exception inner) : base(message, inner)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user