moto/moto/apigateway/exceptions.py
2016-09-14 11:52:56 +01:00

12 lines
293 B
Python

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