try {
     r();
} catch (Exception e) {
System.out.println(e.getMessage());////==null.....!!
}public static void r(){
System.out.println("run...");
try {
System.out.println("try...");
throw new RuntimeException("msg");
} catch (Exception e) {
System.out.println(e.getMessage());
throw new RuntimeException(e);
}
}e.getMessage()==null!!!
为什么会这样