Example #1
0
 internal SocketException(string message, UltimaSocket socket, byte[] data, Exception inner)
     : base(message, inner)
 {
     socketDump = socket.Dump();
     socketDump += "Current data:\n" + PacketLogging.BuildString(data);
 }
Example #2
0
 internal SocketException(string message, UltimaSocket socket, Exception inner)
     : base(message, inner)
 {
     socketDump = socket.Dump();
 }
Example #3
0
 internal SocketException(UltimaSocket socket)
 {
     socketDump = socket.Dump();
 }
Example #4
0
 internal SocketException(string message, UltimaSocket socket, byte[] data, Exception inner)
     : base(message, inner)
 {
     socketDump  = socket.Dump();
     socketDump += "Current data:\n" + PacketLogging.BuildString(data);
 }
Example #5
0
 internal SocketException(string message, UltimaSocket socket, Exception inner)
     : base(message, inner)
 {
     socketDump = socket.Dump();
 }
Example #6
0
 internal SocketException(UltimaSocket socket)
 {
     socketDump = socket.Dump();
 }