5 lines
191 B
Python
5 lines
191 B
Python
from .database_error import DatabaseError
|
|
class DatabaseConnectionError(DatabaseError):
|
|
def __init__(self, message: str):
|
|
super().__init__(message)
|
|
self.message = message |