12 lines
351 B
Python
12 lines
351 B
Python
from moto.core.exceptions import JsonRESTError
|
|
|
|
|
|
class ConflictException(JsonRESTError):
|
|
def __init__(self, message, **kwargs):
|
|
super().__init__("ConflictException", message, **kwargs)
|
|
|
|
|
|
class BadRequestException(JsonRESTError):
|
|
def __init__(self, message, **kwargs):
|
|
super().__init__("BadRequestException", message, **kwargs)
|