You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProxyException.cs 634 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Shadowsocks.Util.SystemProxy
  8. {
  9. class ProxyException : Exception
  10. {
  11. public ProxyException()
  12. {
  13. }
  14. public ProxyException(string message) : base(message)
  15. {
  16. }
  17. public ProxyException(string message, Exception innerException) : base(message, innerException)
  18. {
  19. }
  20. protected ProxyException(SerializationInfo info, StreamingContext context) : base(info, context)
  21. {
  22. }
  23. }
  24. }