As I can see in your attached .xaml you have invoked a workflow in Try block and it have a out string argument as out_strTest
So, Whenever there will an error in that invoked workflow the out argument will be null and it is being stored in the out_strTest named variable means it will also be null…!
If you want to print the error in message box, then put exception.Message.ToString in Message box activity!