Beispiel #1
0
 public ProtocolException(ProtocolType.Types protocolType, ClientState client) : base(client)
 {
     ProtocolType = protocolType;
 }
Beispiel #2
0
 public ProtocolException(ProtocolType.Types protocolType, ClientState client, string message, Exception innerException) : base(client, message, innerException)
 {
     ProtocolType = protocolType;
 }
Beispiel #3
0
 public ProtocolNotSupportedException(ProtocolType.Types protocolType, ClientState client, string message = "Unsupported protocol") : base(client, message)
 {
     ProtocolType = protocolType;
 }