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