IRC parsing, tokenization, and state handling in C#
at main 16 lines 342 B view raw
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}