コード例 #1
0
ファイル: TlsException.cs プロジェクト: Profit0004/mono
		public TlsException (Alert alert, string message)
			: base (message)
		{
			this.alert = alert;
		}
コード例 #2
0
ファイル: TlsException.cs プロジェクト: Profit0004/mono
		public TlsException (Alert alert)
			: this (alert, alert.Description.ToString())
		{
		}