I have the followin plantuml code
@startuml Job Parsing Sequence
<style>
title {
HorizontalAlignment center
FontSize 20
FontColor black
}
</style>
' Start of Activity
title Job Parsing Sequence
skinparam defaultTextAlignment center
start
:Read text;
repeat :**Extract important info**
if (Parsing is Successful) then (True)
break
endif
-> False;
repeat while (Attempts < 4) is (True) not (False)
->;
:Save file;
stop
@enduml
I want to have 2 paths. 1 for the if break where the file is saved another when the while condition is met and so the process is killed. How to do so?