@startuml test
start
if ( condition_1) then (true)
if ( condition_2 ) then (true)
if ( condition_3 ) then (true)
if ( condition_4 ) then (true)
:do something;
endif
else (false)
label false_handling
:something is wrong here;
endif
else (false)
goto false_handling
endif
else (false)
goto false_handling
endif
stop
@enduml
The intention of this code is to perform a series of nested conditional checks. If all conditions (condition_1, condition_2, condition_3, and condition_4) are true, a specific action (do something) is executed. If any condition is false, the flow jumps to a label (false_handling) where an error message (something is wrong here) is displayed.
But the flow chart isnt being displayed what I want to see.