diff ServerMonitor/Objects/UpdateCheckException.cs @ 1:9e92780ebc0f

Additional validation for SSH check
author Brad Greco <brad@bgreco.net>
date Tue, 01 Jan 2019 21:14:47 -0500
parents
children 68d7834dc28e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ServerMonitor/Objects/UpdateCheckException.cs	Tue Jan 01 21:14:47 2019 -0500
@@ -0,0 +1,12 @@
+using System;
+using System.Runtime.Serialization;
+
+namespace ServerMonitorApp
+{
+    public class UpdateCheckException : Exception
+    {
+        public UpdateCheckException(string message) : base(message)
+        {
+        }
+    }
+}
\ No newline at end of file