Mercurial > servermonitor
comparison ServerMonitor/Objects/UpdateCheckException.cs @ 17:68d7834dc28e
More comments.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Sat, 25 May 2019 15:14:26 -0400 |
parents | 9e92780ebc0f |
children |
comparison
equal
deleted
inserted
replaced
16:7626b099aefd | 17:68d7834dc28e |
---|---|
1 using System; | 1 using System; |
2 using System.Runtime.Serialization; | |
3 | 2 |
4 namespace ServerMonitorApp | 3 namespace ServerMonitorApp |
5 { | 4 { |
5 /// <summary>Thrown when invalid data is entered on the check settings form.</summary> | |
6 public class UpdateCheckException : Exception | 6 public class UpdateCheckException : Exception |
7 { | 7 { |
8 public UpdateCheckException(string message) : base(message) | 8 public UpdateCheckException(string message) : base(message) |
9 { | 9 { |
10 } | 10 } |