13 lines
201 B
C#
13 lines
201 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Tls;
|
|
|
|
public class TlsException : IOException
|
|
{
|
|
public TlsException(string message, Exception cause)
|
|
: base(message, cause)
|
|
{
|
|
}
|
|
}
|