异常信息打印
程序员文章站
2022-07-15 15:48:37
...
try
{
//调用业务,略
}
catch (Exception e)
{
System.out.println("抛出异常");
if(e instanceof SystemException)
{
SystemException ex =(SystemException)e;
System.out.println("errorcode>>>>"+ex.getErrorCode());
}
e.printStackTrace();
}
上一篇: java 日志中打印异常信息