1# Copyright (C) 2003 Rational Discovery LLC.  Distributed under the Boost
2# Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy
3# at http://www.boost.org/LICENSE_1_0.txt)
4
5print("running...")
6
7import crossmod_exception_a
8import crossmod_exception_b
9
10try:
11  crossmod_exception_b.tossit()
12except IndexError:
13  pass
14try:
15  crossmod_exception_a.tossit()
16except IndexError:
17  pass
18
19print("Done.")
20