BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git] / tests / testcases / integration / statements / try-1.boo
blob87bf11d1077dce28914dce0178918c13b8729f95
1 """
2 caught!
3 should end up here!
5 """
6 try:
7 raise System.ApplicationException("caught!")
8 print("should not get here!")
9 except x:
10 print(x.Message)
11 print("should end up here!");