Mercurial > servermonitor
view ServerMonitor/Objects/UpdateCheckException.cs @ 14:2db36ab759de
Add comments.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Mon, 22 Apr 2019 21:10:42 -0400 |
parents | 9e92780ebc0f |
children | 68d7834dc28e |
line wrap: on
line source
using System; using System.Runtime.Serialization; namespace ServerMonitorApp { public class UpdateCheckException : Exception { public UpdateCheckException(string message) : base(message) { } } }