comparison 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
comparison
equal deleted inserted replaced
0:3e1a2131f897 1:9e92780ebc0f
1 using System;
2 using System.Runtime.Serialization;
3
4 namespace ServerMonitorApp
5 {
6 public class UpdateCheckException : Exception
7 {
8 public UpdateCheckException(string message) : base(message)
9 {
10 }
11 }
12 }