Remove error handling of list_networks

list_networks() of compute network client is implemented like:
  if name:
      networks = [n for n in body['networks'] if n['label'] == name]
So if the network of the specified name don't exist, the return value
is an empty dict. lib_exc.NotFound never happens.
This patch removes lib_exc.NotFound handling.

Change-Id: I8a48d31b6e9b932729d2156cf08669a1970d0b5b
diff --git a/tempest/common/fixed_network.py b/tempest/common/fixed_network.py
index 2c6e334..18386ce 100644
--- a/tempest/common/fixed_network.py
+++ b/tempest/common/fixed_network.py
@@ -14,7 +14,6 @@
 from oslo_log import log as logging
 
 from tempest_lib.common.utils import misc as misc_utils
-from tempest_lib import exceptions as lib_exc
 
 from tempest import config
 from tempest import exceptions
@@ -41,19 +40,7 @@
     if not name:
         raise exceptions.InvalidConfiguration()
 
-    try:
-        networks = compute_networks_client.list_networks(name=name)
-    except lib_exc.NotFound:
-        # In case of nova network, if the fixed_network_name is not
-        # owned by the tenant, and the network client is not an admin
-        # one, list_networks will not find it
-        msg = ('Unable to find network %s. '
-               'Starting instance without specifying a network.' %
-               name)
-        if caller:
-            msg = '(%s) %s' % (caller, msg)
-        LOG.info(msg)
-        raise exceptions.InvalidConfiguration()
+    networks = compute_networks_client.list_networks(name=name)
 
     # Check that a network exists, else raise an InvalidConfigurationException
     if len(networks) == 1: