Skip to content

Exceptions

DatabaseError

Bases: KoalityError

Exception raised for errors in the database operations.

Source code in src/koality/exceptions.py
 7
 8
 9
10
class DatabaseError(KoalityError):
    """Exception raised for errors in the database operations."""

    pass

KoalityError

Bases: Exception

Base exception class for Koality-related errors.

Source code in src/koality/exceptions.py
1
2
3
4
class KoalityError(Exception):
    """Base exception class for Koality-related errors."""

    pass