"""
Error handling system for BaoLife.

Provides custom exceptions, error decorators, and client error messaging.
"""

from .error_handler import (
    GameError,
    InsufficientResourcesError,
    ServerError,
    handle_errors,
    send_error_to_client
)

__all__ = [
    'GameError',
    'InsufficientResourcesError',
    'ServerError',
    'handle_errors',
    'send_error_to_client'
]
