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
 9
10
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
5
6
class KoalityError(Exception):
    """Base exception class for Koality-related errors."""