about summary refs log tree commit diff
path: root/IRCStates/ServerDisconnectedException.cs
blob: 0912987e00d80ddfbf7f97fb12a1f93bcf27eaf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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()
        {
        }
    }
}