2023-07-12 09:18:56 +00:00
|
|
|
class NoAudioUploadedServiceError(Exception):
|
|
|
|
|
pass
|
2023-07-07 09:50:42 +00:00
|
|
|
|
|
|
|
|
|
2023-07-12 09:18:56 +00:00
|
|
|
class AudioTooLargeServiceError(Exception):
|
|
|
|
|
pass
|
2023-07-07 09:50:42 +00:00
|
|
|
|
|
|
|
|
|
2023-07-12 09:18:56 +00:00
|
|
|
class UnsupportedAudioTypeServiceError(Exception):
|
|
|
|
|
pass
|
2023-07-07 09:50:42 +00:00
|
|
|
|
2024-01-23 17:05:37 +00:00
|
|
|
|
2023-07-12 09:18:56 +00:00
|
|
|
class ProviderNotSupportSpeechToTextServiceError(Exception):
|
2024-01-23 17:05:37 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ProviderNotSupportTextToSpeechServiceError(Exception):
|
|
|
|
|
pass
|