view ServerMonitor/Objects/UpdateCheckException.cs @ 24:06ff59b59e70

Fix not being able to enable a server with a blank SSH key even if it has no SSH checks.
author Brad Greco <brad@bgreco.net>
date Thu, 30 May 2019 21:40:57 -0400
parents 68d7834dc28e
children
line wrap: on
line source

using System;

namespace ServerMonitorApp
{
    /// <summary>Thrown when invalid data is entered on the check settings form.</summary>
    public class UpdateCheckException : Exception
    {
        public UpdateCheckException(string message) : base(message)
        {
        }
    }
}