Add sub-minimal mocking of elasticbeanstalk:create_application()
This commit is contained in:
parent
c95d472bf5
commit
336f50349a
7 changed files with 181 additions and 5 deletions
7
moto/eb/exceptions.py
Normal file
7
moto/eb/exceptions.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from moto.core.exceptions import RESTError
|
||||
|
||||
|
||||
class InvalidParameterValueError(RESTError):
|
||||
def __init__(self, message):
|
||||
super(InvalidParameterValueError, self).__init__(
|
||||
"InvalidParameterValue", message)
|
||||
Loading…
Add table
Add a link
Reference in a new issue