Mercurial > servermonitor
view ServerMonitor/Objects/UpdateCheckException.cs @ 19:b3128fe10d57
Add About form and license.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Wed, 29 May 2019 20:18:37 -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) { } } }