mirror of
https://github.com/ijaric/voice_assistant.git
synced 2025-05-24 14:33:26 +00:00
23 lines
365 B
Python
23 lines
365 B
Python
import typing
|
|
|
|
|
|
class ApplicationError(Exception):
|
|
def __init__(self, message: str, *args: typing.Any) -> None:
|
|
super().__init__(*args)
|
|
self.message = message
|
|
|
|
|
|
class DisposeError(ApplicationError):
|
|
pass
|
|
|
|
|
|
class StartServerError(ApplicationError):
|
|
pass
|
|
|
|
|
|
__all__ = [
|
|
"ApplicationError",
|
|
"DisposeError",
|
|
"StartServerError",
|
|
]
|