NetWorkException.cs 449 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace vCloud.Windows.ForceUpgrade
  7. {
  8. /// <summary>
  9. /// 网络异常类
  10. /// </summary>
  11. public class NetWorkException : Exception
  12. {
  13. public NetWorkException() : base()
  14. {
  15. }
  16. public NetWorkException(string msg) : base(msg)
  17. {
  18. }
  19. }
  20. }