view ServerMonitor/Objects/UpdateCheckException.cs @ 2:453ecc1ed9ea

Disk space check
author Brad Greco <brad@bgreco.net>
date Sun, 06 Jan 2019 20:49:08 -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)
        {
        }
    }
}