Reraise exception in bootstrap_mic() but keep original traceback.
authorHuang Hao <hao.h.huang@intel.com>
Thu, 28 Feb 2013 12:51:44 +0000 (20:51 +0800)
committerHuang Hao <hao.h.huang@intel.com>
Mon, 11 Mar 2013 08:02:43 +0000 (16:02 +0800)
commitbbdcae8f31aad3fdcaae6ac96dd8277285d347d1
tree69459825368be746bc5f70814f7eaca775211455
parentf8bc63625af77b8857f3aca0db519f6f3422e3e5
Reraise exception in bootstrap_mic() but keep original traceback.

When exception occurs, we could add additional information but
should keep the original traceback. Otherwise traceback shows up
in console will be the second one, which hide the true exception.

A bare "raise" statement is a special syntax to reraise the
original exception, which will also keep its traceback.

Please Refer PEP3134 for more details.

Change-Id: I420399061de89b911cecd5da60fde0023f1893ac
mic/bootstrap.py
mic/rt_util.py