Fix NotFound exception in docstring

A recent patch added a docstring that references the new NotFound
exception. Unfortunately it is ambiguous with other NotFound
exceptions.
This patch clarifies the NotFound exception.

Change-Id: Ie7df8625c907a19e82a4595b32ee6e77c93363f7
This commit is contained in:
Michael Johnson 2020-07-21 09:39:34 -07:00
parent ec7195d713
commit 397653cb6d
1 changed files with 2 additions and 1 deletions

View File

@ -487,7 +487,8 @@ class ProviderDriver():
:raises NotImplementedError: The driver does not support flavors.
:raises UnsupportedOptionError: if driver does not
support one of the configuration options.
:raises NotFound: if the driver cannot find a resource.
:raises octavia_lib.api.drivers.exceptions.NotFound: if the driver
cannot find a resource.
"""
raise exceptions.NotImplementedError(
user_fault_string='This provider does not support validating '