2024-10-09 06:36:43 +00:00
|
|
|
from typing import Optional
|
|
|
|
|
|
|
|
|
|
|
2024-12-26 15:31:29 +00:00
|
|
|
class BaseServiceError(ValueError):
|
2024-10-09 06:36:43 +00:00
|
|
|
def __init__(self, description: Optional[str] = None):
|
2024-08-26 05:43:57 +00:00
|
|
|
self.description = description
|