El método getMessage() de la clase Throwable se usa para devolver un mensaje detallado del objeto Throwable que también puede ser nulo. Se puede usar este método para obtener el mensaje detallado de excepción como un valor de string.
Sintaxis:
public String getMessage()
Valor de retorno: este método devuelve el mensaje detallado de esta instancia de Throwable.
Los siguientes programas demuestran el método getMessage() de java.lang.Throwable Class
Ejemplo 1:
// Java program to demonstrate // the getMessage() Method. import java.io.*; class GFG { // Main Method public static void main(String[] args) throws Exception { try { // divide the numbers divide(2, 0); } catch (ArithmeticException e) { System.out.println("Message String = " + e.getMessage()); } } // method which divide two numbers public static void divide(int a, int b) throws ArithmeticException { int c = a / b; System.out.println("Result:" + c); } }
Producción:
Message String = / by zero
Ejemplo 2:
// Java program to demonstrate // the getMessage() Method. import java.io.*; class GFG { // Main Method public static void main(String[] args) throws Exception { try { test(); } catch (Throwable e) { System.out.println("Message of Exception : " + e.getMessage()); } } // method which throws UnsupportedOperationException public static void test() throws UnsupportedOperationException { throw new UnsupportedOperationException(); } }
Producción:
Message of Exception : null
Referencias:
https://docs.oracle.com/javase/10/docs/api/java/lang/Throwable.html#getMessage()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA