Skip to content

Exceptions

Custom exceptions for koality.

DatabaseError

Bases: KoalityError

Exception raised for errors in the database operations.

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

KoalityError

Bases: Exception

Base exception class for Koality-related errors.

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