websocket-server – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Runtime.Serialization;
5 using System.Text;
6 using System.Net.Sockets;
7  
8 namespace WebSockets.Exceptions
9 {
10 [Serializable]
11 public class ServerListenerSocketException : Exception
12 {
13 public ServerListenerSocketException() : base()
14 {
15  
16 }
17  
18 public ServerListenerSocketException(string message) : base(message)
19 {
20  
21 }
22  
23 public ServerListenerSocketException(string message, Exception inner) : base(message, inner)
24 {
25  
26 }
27  
28 public ServerListenerSocketException(SerializationInfo info, StreamingContext context) : base(info, context)
29 {
30  
31 }
32 }
33 }