health-apps-cms/exceptions/business_exception.py

6 lines
216 B
Python

class BusinessValidationException(Exception):
"""Exception for business logic validation errors."""
def __init__(self, message: str):
self.message = message
super().__init__(self.message)