2020-09-30 08:18:26 -04:00
|
|
|
from moto.core.exceptions import JsonRESTError
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ConflictException(JsonRESTError):
|
|
|
|
|
def __init__(self, message, **kwargs):
|
2022-01-14 18:51:49 -01:00
|
|
|
super().__init__("ConflictException", message, **kwargs)
|
2020-09-30 08:18:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class BadRequestException(JsonRESTError):
|
|
|
|
|
def __init__(self, message, **kwargs):
|
2022-01-14 18:51:49 -01:00
|
|
|
super().__init__("BadRequestException", message, **kwargs)
|