view 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 source

using System;
using System.Runtime.Serialization;

namespace ServerMonitorApp
{
    public class UpdateCheckException : Exception
    {
        public UpdateCheckException(string message) : base(message)
        {
        }
    }
}