moto/moto/eb/exceptions.py
Bert Blommers 888e0c31a0 Linting
2020-03-30 13:42:00 +01:00

15 lines
431 B
Python

from moto.core.exceptions import RESTError
class InvalidParameterValueError(RESTError):
def __init__(self, message):
super(InvalidParameterValueError, self).__init__(
"InvalidParameterValue", message
)
class ResourceNotFoundException(RESTError):
def __init__(self, message):
super(ResourceNotFoundException, self).__init__(
"ResourceNotFoundException", message
)