- 论坛徽章:
- 0
|
public void log_view ()
throws Exception
{
throw new Exception("error test!");
}
public doAction (String func_name)
{
try
{
this.getClass().getMethod(func_name,null).invoke(this,null);
}
catch (NoSuchMethodException e)
{
System.out.println(e.getMessage());
}
catch (SQLException e)
{
System.out.println(e.getMessage());
}
catch (Exception e)
{
System.out.println(e.getMessage());
}
}
如果我执行 doAction("log_view");
即通过 doAction() 执行log_view()函数,如果 log_view出现异常,
catch (Exception e)
{
System.out.println(e.getMessage());
}
却取不到错误信息,只有null。
谢谢各位解答! |
|