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

12 lines
234 B
C#

using System.IO;
namespace Org.BouncyCastle.Crypto.Tls;
public class TlsNoCloseNotifyException : EndOfStreamException
{
public TlsNoCloseNotifyException()
: base("No close_notify alert received before connection closed")
{
}
}