欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

异常信息打印

程序员文章站 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();
                }