Elastic Beanstalk - Rename and Add Implementation Coverage

This commit is contained in:
Bert Blommers 2020-03-30 14:08:22 +01:00
commit 7d524eaec9
8 changed files with 74 additions and 53 deletions

View file

@ -1,15 +0,0 @@
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
)