Fix typo in exception name

Replace "ManagerException" with "ManagerError"

Change-Id: I2fc8e081dd2f36c20ee6234df2c5c900d974cabc
(cherry picked from commit 31da96584f)
This commit is contained in:
Salvatore Orlando 2021-12-01 02:46:19 -08:00 committed by Salvatore Orlando
parent d4b9c604a2
commit ffc81fe736
1 changed files with 1 additions and 2 deletions

View File

@ -3722,8 +3722,7 @@ class NsxPolicySecurityPolicyBaseApi(NsxPolicyResourceBase):
if not transaction: if not transaction:
err_msg = ("patch_entries can only be used within " err_msg = ("patch_entries can only be used within "
"H-API transactions") "H-API transactions")
raise exceptions.ManagerException( raise exceptions.ManagerError(details=err_msg)
details=err_msg)
patch_entries = [] patch_entries = []
for entry in entries: for entry in entries:
rule = entry.get_obj_dict() rule = entry.get_obj_dict()