17 lines
296 B
C#
17 lines
296 B
C#
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)
|
|
{
|
|
}
|
|
}
|