public NetworkingException(string message, NetwokExceptionType netwokExceptionType, Exception innerException) : base(message, innerException)
 {
     NetwokExceptionType = netwokExceptionType;
 }
 public NetworkingException(string message, NetwokExceptionType netwokExceptionType)
     : base(message)
 {
     NetwokExceptionType = netwokExceptionType;
 }