view ServerMonitor/Objects/UpdateCheckException.cs @ 31:88ca7e4fc023

Allow running a file check on a directory.
author Brad Greco <brad@bgreco.net>
date Sun, 16 Jun 2019 16:54:46 -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)
        {
        }
    }
}