NetException.cs 363 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CommonNetwork.Net
  5. {
  6. public class NetException : Exception
  7. {
  8. public NetException(string message)
  9. : base(message)
  10. {
  11. }
  12. public NetException(string message, Exception err)
  13. : base(message, err)
  14. {
  15. }
  16. }
  17. }