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