ircsharp/IRCStates/ServerDisconnectedException.cs

20 lines
410 B
C#
Raw Permalink Normal View History

2020-04-28 04:35:52 +00:00
using System;
2020-05-15 03:06:10 +00:00
namespace IRCStates
2020-04-28 04:35:52 +00:00
{
public class ServerDisconnectedException : Exception
{
2020-05-15 20:12:20 +00:00
public ServerDisconnectedException(string message) : base(message)
{
}
public ServerDisconnectedException(string message, Exception innerException) : base(message, innerException)
{
}
public ServerDisconnectedException()
{
}
2020-04-28 04:35:52 +00:00
}
}