Merge pull request #959 from mickeypash/correct-iam-error-code-no-such-entity

Fix the error code for IAMNotFoundException to NoSuchEntity used by AWS.
This commit is contained in:
Jack Danger 2017-05-19 15:46:29 -07:00 committed by GitHub
commit a2be8b760c

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):