Mercurial > servermonitor
view ServerMonitor/Objects/UpdateCheckException.cs @ 16:7626b099aefd
More comments.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Tue, 30 Apr 2019 20:40:58 -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) { } } }