moto/moto/apigateway/exceptions.py
Steve Pulec f37bad0e00 Lints.
2017-02-23 21:37:43 -05:00

11 lines
291 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")