annotate ServerMonitor/Objects/UpdateCheckException.cs @ 34:9c0e18d65e8b

Build NuGet from source instead of using the NuGet package to fix the update notification always showing when the program is run from Windows startup.
author Brad Greco <brad@bgreco.net>
date Sat, 13 Jul 2019 12:09:10 -0400
parents 68d7834dc28e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
1 using System;
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
2
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
3 namespace ServerMonitorApp
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
4 {
17
68d7834dc28e More comments.
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
5 /// <summary>Thrown when invalid data is entered on the check settings form.</summary>
1
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
6 public class UpdateCheckException : Exception
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
7 {
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
8 public UpdateCheckException(string message) : base(message)
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
9 {
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
10 }
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
11 }
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents:
diff changeset
12 }