JAVA异常处理
把异常的错误信息输出在控制台
e.printStackTrace();
public String getMessage():返回此 throwable 的详细消息字符串
System.out.println(e.getMessage());
Index 3 out of bounds for length 3
public String toString():返回此可抛出的简短描述
System.out.println(e.toString());
java.lang.ArrayIndexOutOfBounds
Exception: Index 3 out of bounds for length 3