当异常是CLR会设定异常起点
try
{
}catch(Exception ex){
throw ex;//CLR会在此设置异常的起点
}
{}catch(Exception ex)
throw ;//CLR不会在此设置异常的起点