Home »
Java programming language
Java Throwable toString() Method with Example
Throwable Class toString() method: Here, we are going to learn about the toString() method of Throwable Class with its syntax and example.
Submitted by Preeti Jain, on January 06, 2020
Throwable Class toString() method
- toString() Method is available in java.lang package.
- toString() Method is used to return a short description of the exception.
- toString() Method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- toString() Method does not throw an exception at the time of string representation about the exception.
Syntax:
public String toString();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of the method is String, it represents string for the exception.
Example:
// Java program to demonstrate the example
// of String toString() method of Throwable
public class ToString {
public static void main(String args[]) throws Exception {
try {
div(-3, 0);
} catch (Exception ex) {
System.out.println("ex.toString() :" + ex.toString());
}
}
// This method divide number by 0
public static void div(int d1, int d2) throws Exception {
int res = d1 / d2;
System.out.println("res :" + res);
}
}
Output
ex.toString() :java.lang.ArithmeticException: / by zero