|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Shadowsocks.Util.SystemProxy
- {
- class ProxyException : Exception
- {
- public ProxyException()
- {
- }
-
- public ProxyException(string message) : base(message)
- {
- }
-
- public ProxyException(string message, Exception innerException) : base(message, innerException)
- {
- }
-
- protected ProxyException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
- }
- }
|