Not, not Non for the exception.

This commit is contained in:
dominictootell 2016-09-14 11:52:56 +01:00
commit 9e73d10e59
3 changed files with 7 additions and 7 deletions

View file

@ -2,11 +2,11 @@ from __future__ import unicode_literals
from moto.core.exceptions import RESTError
class StageNonFoundException(RESTError):
class StageNotFoundException(RESTError):
code = 404
def __init__(self):
super(StageNonFoundException, self).__init__(
"NonFoundException", "Invalid stage identifier specified")
super(StageNotFoundException, self).__init__(
"NotFoundException", "Invalid stage identifier specified")