Java Throwable getMessage()方法
java.lang.Throwable.getMessage() 方法返回该throwable的详细消息字符串。
1 语法
public String getMessage()
2 参数
无
3 返回值
此方法返回该Throwable实例的详细消息字符串(可以为null)。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Throwable getMessage()方法
*/
import java.lang.*;
public class ThrowableDemo {
public static void main(String[] args) throws Throwable {
try {
newException();
}
catch(Throwable e) {
System.err.println(e);
// returns the detail message string of this Throwable instance
System.out.println(e.getMessage());
}
}
public static void newException() throws Exception {
System.out.println("This is newException() function");
throw new Exception("new Exception...");
}
}
输出结果为:
This is newException() function
new Exception...
java.lang.Exception: new Exception...
热门文章
优秀文章