You are on page 1of 1

- In case any browser is difficult to manage for popup etc.

try with a different


browser

-To throw an exception in the �Throw� activity you would use the following syntax

new Exception("Throwing an exception because something went wrong")


OR
new BusinessRuleException("Throwing an exception because this transaction needs to
be referred back to the business")

In the �Catch� activity you can choose the type of exception you want to catch and
then to get the message you would use exception.Message (if you just want the
message) or exception.ToString (if you want the message and the full trace)

You might also like