try{ 
...some code... 
}catch(e){ 
...some code... //处理错误 
throw(e.name); //抛出异常 
}finally{<BR>    // 完成后执行的语句块,非必须<BR>}