最佳答案
两者有什么区别
try { ... }
catch{ throw }
而且
try{ ... }
catch(Exception e) {throw new Exception(e.message) }
不管第二个显示的是一条消息。