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