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