diff --git a/openstack/exceptions.py b/openstack/exceptions.py index 5180cc43..eb652425 100644 --- a/openstack/exceptions.py +++ b/openstack/exceptions.py @@ -90,6 +90,11 @@ class DuplicateResource(SDKException): pass +class ResourceNotFound(NotFoundException): + """No resource exists with that name or id.""" + pass + + class ResourceTimeout(SDKException): """Timeout waiting for resource.""" pass