當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Throwable.getMessage()用法及代碼示例



描述

這個java.lang.Throwable.getMessage() 方法返回此 throwable 的詳細消息字符串。

聲明

以下是聲明java.lang.Throwable.getMessage()方法

public String getMessage()

參數

NA

返回值

此方法返回此 Throwable 實例的詳細消息字符串(可以為 null)。

異常

NA

示例

下麵的例子展示了 java.lang.Throwable.getMessage() 方法的用法。

package com.tutorialspoint;

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...

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Throwable.getMessage() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。