Hi,
I want to create logger that loggs information about each error on the txt file. I created a code and placed on SequenceFilePostStepRuntimeError in the main.seq.
Works good.
Untill error happens in sequence in the subseq.seq file (which is obviously called from main.seq)
So it looks like errors are handled by the SequenceFilePostStepRuntimeError in the same *.seq file where they occur. I want to change that.
I want that every error, does not matter where it occurred, shall be propagated to the parent caller (main.seq) and handled in the SequenceFilePostStepRuntimeError callback of that parent caller.
Any ideas what is the best way to do that?