14 lines
357 B
Python
14 lines
357 B
Python
|
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."
|
||
|
)
|