Fix the error code for IAMNotFoundException to NoSuchEntity used by AWS.

This commit is contained in:
mickeypash 2017-05-19 23:30:29 +01:00
parent fe51fadda5
commit 965dc806c5

View File

@ -7,7 +7,7 @@ class IAMNotFoundException(RESTError):
def __init__(self, message):
super(IAMNotFoundException, self).__init__(
"Not Found", message)
"NoSuchEntity", message)
class IAMConflictException(RESTError):