Beispiel #1
0
 public static NetMQException Create([NotNull] SocketException innerException)
 {
     return(NetMQException.Create(innerException.SocketErrorCode, innerException));
 }
Beispiel #2
0
 public static NetMQException Create(ErrorCode errorCode)
 {
     return(NetMQException.Create(null, errorCode));
 }
Beispiel #3
0
 public static NetMQException Create([CanBeNull] string message, ErrorCode errorCode)
 {
     return(NetMQException.Create(errorCode, message, null));
 }
Beispiel #4
0
 public static NetMQException Create(ErrorCode errorCode, [CanBeNull] Exception innerException)
 {
     return(NetMQException.Create(errorCode, null, innerException));
 }