if sp != "name":
config_params[sp] = params[sp]
except KeyError:
print("Using default value for parameter `{}`.".format(sp))
// Occurs when params[sp] throws KeyError. It means that the needed configuration is// absent in the json file and a default configuration from class constructor should// be taken instead.