IAcceptSocket.cs 358 B

123456789101112131415
  1. using System;
  2. namespace MediaBrowser.Model.Net
  3. {
  4. public class SocketCreateException : Exception
  5. {
  6. public SocketCreateException(string errorCode, Exception originalException)
  7. : base(errorCode, originalException)
  8. {
  9. ErrorCode = errorCode;
  10. }
  11. public string ErrorCode { get; private set; }
  12. }
  13. }