Java.lang.Throwable.toString() 方法
描述
java.lang.Throwable.toString() 方法返回这个 throwable 的简短描述。 结果是串联 −
- 这个对象的类名
- ": "(冒号和空格)
- 调用此对象的 getLocalizedMessage() 方法的结果。
如果 getLocalizedMessage 返回 null,则只返回类名。
声明
以下是 java.lang.Throwable.toString() 方法的声明。
public String toString()
参数
NA
返回值
此方法返回此 throwable 的字符串表示形式。
异常
NA
示例
下面的例子展示了 java.lang.Throwable.toString() 方法的使用。
package com.tutorialspoint; import java.lang.*; public class ThrowableDemo { public static void main(String[] args) { try { Exception2(); } catch(Throwable e) { System.err.println(e.toString()); } } public static void Exception2()throws Throwable { throw new Throwable("This is the new Exception"); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
java.lang.Throwable: This is the new Exception