Пример #1
0
 public PackException(string message, PacketBodyBase packetBody, Exception innerException)
     : base(message, innerException)
 {
     this.PacketBody = packetBody.ToString();
 }
Пример #2
0
 public PackException(string message, PacketBodyBase packetBody)
     : base(message)
 {
     this.PacketBody = packetBody.ToString();
 }