view ServerMonitor/Objects/UpdateCheckException.cs @ 5:b6fe203af9d5

Private key passwords and validation
author Brad Greco <brad@bgreco.net>
date Thu, 28 Feb 2019 21:19:32 -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)
        {
        }
    }
}