IRC parsing, tokenization, and state handling in C#
1namespace IRCStates;
2
3public class ServerDisconnectedException : Exception
4{
5 public ServerDisconnectedException(string message) : base(message)
6 {
7 }
8
9 public ServerDisconnectedException(string message, Exception innerException) : base(message, innerException)
10 {
11 }
12
13 public ServerDisconnectedException()
14 {
15 }
16}