Severian's picture
initial commit
a8b3f00
raw
history blame contribute delete
163 Bytes
from typing import Optional
class BaseServiceError(Exception):
def __init__(self, description: Optional[str] = None):
self.description = description