moto/moto/transcribe/exceptions.py
2023-04-29 22:21:00 +00:00

12 lines
321 B
Python

from moto.core.exceptions import JsonRESTError
class ConflictException(JsonRESTError):
def __init__(self, message: str):
super().__init__("ConflictException", message)
class BadRequestException(JsonRESTError):
def __init__(self, message: str):
super().__init__("BadRequestException", message)