23 lines
394 B
Python
23 lines
394 B
Python
class NoAudioUploadedServiceError(Exception):
|
|
pass
|
|
|
|
|
|
class AudioTooLargeServiceError(Exception):
|
|
pass
|
|
|
|
|
|
class UnsupportedAudioTypeServiceError(Exception):
|
|
pass
|
|
|
|
|
|
class ProviderNotSupportSpeechToTextServiceError(Exception):
|
|
pass
|
|
|
|
|
|
class ProviderNotSupportTextToSpeechServiceError(Exception):
|
|
pass
|
|
|
|
|
|
class ProviderNotSupportTextToSpeechLanageServiceError(Exception):
|
|
pass
|