view ServerMonitor/Objects/UpdateCheckException.cs @ 35:2ffb0bda7705

Increase wait time after system resume to begin running checks to prevent false positives.
author Brad Greco <brad@bgreco.net>
date Sat, 13 Jul 2019 12:18:21 -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)
        {
        }
    }
}