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.Text;
5 using System.Runtime.Serialization;
6  
7 namespace WebSockets.Exceptions
8 {
9 [Serializable]
10 public class WebSocketVersionNotSupportedException : Exception
11 {
12 public WebSocketVersionNotSupportedException() : base()
13 {
14  
15 }
16  
17 public WebSocketVersionNotSupportedException(string message) : base(message)
18 {
19  
20 }
21  
22 public WebSocketVersionNotSupportedException(string message, Exception inner) : base(message, inner)
23 {
24  
25 }
26  
27 public WebSocketVersionNotSupportedException(SerializationInfo info, StreamingContext context) : base(info, context)
28 {
29  
30 }
31 }
32 }