netmonitor/NetMonitorUtils/Execptions/ServiceControlArgumentException.cs

18 lines
693 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 ServiceControlArgumentException : System.Exception
{
public ServiceControlArgumentException() : base() { }
public ServiceControlArgumentException(string message) : base(message) { }
public ServiceControlArgumentException(string message, System.Exception inner) : base(message, inner) { }
protected ServiceControlArgumentException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
}
}