Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/Security/GeneralSecurityException.cs
2025-10-09 09:57:24 +09:00

22 lines
343 B
C#

using System;
namespace Org.BouncyCastle.Security;
[Serializable]
public class GeneralSecurityException : Exception
{
public GeneralSecurityException()
{
}
public GeneralSecurityException(string message)
: base(message)
{
}
public GeneralSecurityException(string message, Exception exception)
: base(message, exception)
{
}
}