about summary refs log tree commit diff
path: root/IRCStates/ServerDisconnectedException.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-05-15 16:12:20 -0400
committerBen Harris <ben@tilde.team>2020-05-15 16:12:20 -0400
commit589b64be0c27b6477ad41cff3fe93d8e8b7eff0c (patch)
tree7fb5a21ec651bd10da73e91fb9d8c6b9000d0fcd /IRCStates/ServerDisconnectedException.cs
parentd3600ce56816dbdb3fa5eae12fc6ad133e6e8712 (diff)
add nuget packaging metadata
Diffstat (limited to 'IRCStates/ServerDisconnectedException.cs')
-rw-r--r--IRCStates/ServerDisconnectedException.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/IRCStates/ServerDisconnectedException.cs b/IRCStates/ServerDisconnectedException.cs
index 4d0bab6..0912987 100644
--- a/IRCStates/ServerDisconnectedException.cs
+++ b/IRCStates/ServerDisconnectedException.cs
@@ -4,5 +4,16 @@ namespace IRCStates
 {
     public class ServerDisconnectedException : Exception
     {
+        public ServerDisconnectedException(string message) : base(message)
+        {
+        }
+
+        public ServerDisconnectedException(string message, Exception innerException) : base(message, innerException)
+        {
+        }
+
+        public ServerDisconnectedException()
+        {
+        }
     }
 }