view ServerMonitor/Objects/UpdateCheckException.cs @ 7:8486ab7d2357

Add/remove files
author Brad Greco <brad@bgreco.net>
date Fri, 01 Mar 2019 21:39:22 -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)
        {
        }
    }
}