Add ResourceNotFound exception

This is used by both the get and delete changes, and currently get
depends on delete for it. It should just be by itself.

Change-Id: Ic11f8cc50c0f49b2ae37a5e09624a549602b66c8
This commit is contained in:
Brian Curtin
2015-03-23 10:43:39 -05:00
parent 8ef55adddf
commit 3da8b47cdb

View File

@@ -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