moto/moto/elasticbeanstalk/exceptions.py
2021-12-28 21:26:56 -01:00

12 lines
324 B
Python

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