File size: 577 Bytes
5009cb8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""Domain layer package."""

from .exceptions import (
    DomainException,
    InvalidAudioFormatException,
    InvalidTextContentException,
    TranslationFailedException,
    SpeechRecognitionException,
    SpeechSynthesisException,
    InvalidVoiceSettingsException,
    AudioProcessingException
)

__all__ = [
    'DomainException',
    'InvalidAudioFormatException',
    'InvalidTextContentException',
    'TranslationFailedException',
    'SpeechRecognitionException',
    'SpeechSynthesisException',
    'InvalidVoiceSettingsException',
    'AudioProcessingException'
]