2024-10-09 14:36:43 +08:00
|
|
|
from typing import Optional
|
|
|
|
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
class BaseServiceError(Exception):
|
2024-10-09 14:36:43 +08:00
|
|
|
def __init__(self, description: Optional[str] = None):
|
2024-08-26 13:43:57 +08:00
|
|
|
self.description = description
|