view ServerMonitor/Objects/UpdateCheckException.cs @ 40:c4fc74593a78 default tip

Mono fix
author Brad Greco <brad@bgreco.net>
date Sat, 13 Jun 2020 13:28:20 -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)
        {
        }
    }
}