moto/moto/datasync/exceptions.py

14 lines
357 B
Python
Raw Normal View History

2019-11-02 21:34:35 +02:00
from moto.core.exceptions import JsonRESTError
class DataSyncClientError(JsonRESTError):
code = 400
class InvalidRequestException(DataSyncClientError):
def __init__(self, msg=None):
self.code = 400
super(InvalidRequestException, self).__init__(
"InvalidRequestException", msg or "The request is not valid."
)