ecoute/custom_speech_recognition/exceptions.py

23 lines
273 B
Python
Raw Normal View History

2023-05-11 00:52:52 +00:00
class SetupError(Exception):
pass
class WaitTimeoutError(Exception):
pass
class RequestError(Exception):
pass
class UnknownValueError(Exception):
pass
class TranscriptionNotReady(Exception):
pass
class TranscriptionFailed(Exception):
pass