public static class AlertCreationGuard { public static void EnsureAllowed(AlertType alertType) { if (alertType == AlertType.SepsisWarning) throw new InvalidOperationException( "SEPSIS_WARNING is deprecated. Use SOFA_SEPSIS for sepsis detection."); } }