Source code for pylav.exceptions.database

from __future__ import annotations

from pylav.exceptions.base import PyLavException


[docs] class SQLException(PyLavException): """Base exception for errors in SQL"""
[docs] class EntryNotFoundException(SQLException): """Raised when an entry is not found"""