view ServerMonitor/Objects/UpdateCheckException.cs @ 4:3142e52cbe69

Lots more progress
author Brad Greco <brad@bgreco.net>
date Sun, 10 Feb 2019 20:51:26 -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)
        {
        }
    }
}