Files
orion/app/modules/core/exceptions.py
Samir Boulahtit e9253fbd84 refactor: rename Wizamart to Orion across entire codebase
Replace all ~1,086 occurrences of Wizamart/wizamart/WIZAMART/WizaMart
with Orion/orion/ORION across 184 files. This includes database
identifiers, email addresses, domain references, R2 bucket names,
DNS prefixes, encryption salt, Celery app name, config defaults,
Docker configs, CI configs, documentation, seed data, and templates.

Renames homepage-wizamart.html template to homepage-orion.html.
Fixes duplicate file_pattern key in api.yaml architecture rule.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 16:46:56 +01:00

30 lines
605 B
Python

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