MTSC  1.0.5
Build TCP servers out of modules with handlers for communication, exception and logging.
InvalidWebsocketFormatException.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Runtime.Serialization;
4 using System.Text;
5 
6 namespace MTSC.Exceptions
7 {
8  public class InvalidWebsocketFormatException : Exception
9  {
11  {
12  }
13 
14  public InvalidWebsocketFormatException(string message) : base(message)
15  {
16  }
17 
18  public InvalidWebsocketFormatException(string message, Exception innerException) : base(message, innerException)
19  {
20  }
21 
22  protected InvalidWebsocketFormatException(SerializationInfo info, StreamingContext context) : base(info, context)
23  {
24  }
25  }
26 }