# app/modules/core/exceptions.py """Core module exceptions. Exceptions for core platform functionality including: - Menu configuration - Dashboard operations - Settings management """ from app.exceptions import WizamartException class CoreException(WizamartException): """Base exception for core module.""" class MenuConfigurationError(CoreException): """Error in menu configuration.""" class SettingsError(CoreException): """Error in platform settings.""" class DashboardError(CoreException): """Error in dashboard operations."""