MTSC
1.0.5
Build TCP servers out of modules with handlers for communication, exception and logging.
MethodInvalidException.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
MethodInvalidException
: Exception
12
{
13
public
MethodInvalidException
()
14
{
15
}
16
17
public
MethodInvalidException
(
string
message) : base(message)
18
{
19
}
20
21
public
MethodInvalidException
(
string
message, Exception innerException) : base(message, innerException)
22
{
23
}
24
25
protected
MethodInvalidException
(SerializationInfo info, StreamingContext context) : base(info, context)
26
{
27
}
28
}
29
}
MTSC.Exceptions
Definition:
ExceptionConsoleLogger.cs:5
MTSC.Exceptions.MethodInvalidException
Invalid HTTP Method Exception.
Definition:
MethodInvalidException.cs:11
MTSC
MTSC
Exceptions
MethodInvalidException.cs
Generated by
1.8.15