From e3f9d6293e9c66523578999fff90c9413dc0dcdf Mon Sep 17 00:00:00 2001 From: dharmendra Date: Wed, 19 Jun 2019 12:20:08 +0000 Subject: [PATCH] InvalidServiceType not in use Exception class InvalidServiceType is no more in use now, So removing it to clean dead code. Change-Id: I95ea23e8afb960cf04328279a0c75e9b06d8b0a3 --- tacker/extensions/vnfm.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tacker/extensions/vnfm.py b/tacker/extensions/vnfm.py index fc122ead3..644c569ce 100644 --- a/tacker/extensions/vnfm.py +++ b/tacker/extensions/vnfm.py @@ -59,10 +59,6 @@ class InvalidAPIAttributeType(exceptions.InvalidInput): message = _('Expecting dict type for API attribute instead of %(atype)s ') -class InvalidServiceType(exceptions.InvalidInput): - message = _('invalid service type %(service_type)s') - - class VNFCreateFailed(exceptions.TackerException): message = _('creating VNF based on %(vnfd_id)s failed')