当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。