java.lang.Throwable.getLocalizedMessage()方法實例
java.lang.Throwable.getLocalizedMessage() 方法創建這個Throwable的本地化描述。子類可以以產生特定於語言環境的消息重寫此方法。
聲明
以下是java.lang.Throwable.getLocalizedMessage()方法的聲明
public String getLocalizedMessage()
參數
-
NA
返回值
此方法返回這個拋出的本地化描述。
異常
-
NA
例子
下麵的例子顯示java.lang.Throwable.getLocalizedMessage()方法的使用。
package com.yiibai; import java.lang.*; public class ThrowableDemo { public static void main(String[] args) throws Throwable { try { newException(); } catch(Throwable e) { System.err.println(e); // localized description of this throwable System.out.println(e.getLocalizedMessage()); } } 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...