Throwable类中定义了3个异常处理的方法

Throwable类中定义了3个异常处理的方法

  1. String getMessage()返回此throwable的简短描述
  2. String toString()返回此throwable的详细消息字符串
  3. void printStackTrace()JVM打印异常对象,默认调用此方法,异常信息是最全面的
try{
    method03("c:\\a.tx");
}	catch(IOException e){
	System.out.println(e.getMessage());
	System.out.println(e.toString());
	e.printStackTrace();
	}

你可能感兴趣的:(Throwable类中定义了3个异常处理的方法)