netmonitor/NetMonitorUtils/Execptions/ServiceControlException.cs

18 lines
653 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NetMonitorUtils.Execptions
{
[Serializable()]
class ServiceControlException : System.Exception
{
public ServiceControlException() : base() { }
public ServiceControlException(string message) : base(message) { }
public ServiceControlException(string message, System.Exception inner) : base(message, inner) { }
protected ServiceControlException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
}
}