OnFailure target

Hi,

Is the a parallel target in FB 8 like the OnFailure action in earlier versions?
If not, how may I simulate this action in case of a failure?

Cheers.

OnFailure was removed in FB8, because it made it impossible to make changes that we needed in the stepping engine (dependencies and stepping into included projects). It was amazing how much simpler the code was once it was removed.

You can simulate the OnFailure with a
Try
Rin Main Target
Catch
Run OnFailure Target
Raise Exception
End