1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| using System;
|
| namespace Sodao.FastSocket.Server.Protocol
| {
| /// <summary>
| /// bad protocol exception
| /// </summary>
| public sealed class BadProtocolException : ApplicationException
| {
| /// <summary>
| /// new
| /// </summary>
| public BadProtocolException()
| : base("bad protocol.")
| {
| }
| /// <summary>
| /// new
| /// </summary>
| /// <param name="message"></param>
| public BadProtocolException(string message)
| : base(message)
| {
| }
| }
| }
|
|