about summary refs log blame commit diff
path: root/IRCStates/ServerDisconnectedException.cs
blob: 0912987e00d80ddfbf7f97fb12a1f93bcf27eaf4 (plain) (tree)
1
2
3
4
5
6

                
                   


                                                        










                                                                                                                    

     
using System;

namespace IRCStates
{
    public class ServerDisconnectedException : Exception
    {
        public ServerDisconnectedException(string message) : base(message)
        {
        }

        public ServerDisconnectedException(string message, Exception innerException) : base(message, innerException)
        {
        }

        public ServerDisconnectedException()
        {
        }
    }
}