Mercurial > servermonitor
view ServerMonitor/Objects/UpdateCheckException.cs @ 3:96f0b028176d
File check
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Fri, 11 Jan 2019 22:34:18 -0500 |
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) { } } }