El método getThrown() de java.lang.reflect.LogRecord se usa para obtener un lanzamiento asociado con el evento de registro. Esto se usa para registrar excepciones en logRecord que se pueden usar para registrar mensajes.
Sintaxis:
public Throwable getThrown()
Parámetros: Este método no acepta nada.
Return : Este método devuelve un throwable .
Los siguientes programas ilustran el método getThrown():
Programa 1:
// Java program to illustrate // getThrown() method import java.io.IOException; import java.util.logging.Level; import java.util.logging.LogRecord; public class GFG { public static void main(String[] args) { // Create LogRecord object LogRecord logRecord = new LogRecord(Level.INFO, "GFG Logger"); logRecord.setThrown( new IOException( "Error in Input")); // get Throwable object Throwable throwObj = logRecord.getThrown(); // print result System.out.println( "throwable object = " + throwObj .toString()); } }
Producción:
throwable object = java.io.IOException: Error in Input
Programa 2:
// Java program to illustrate // getThrown() method import java.util.logging.Level; import java.util.logging.LogRecord; public class GFG { public static void main(String[] args) { // Create LogRecord object LogRecord logRecord = new LogRecord(Level.WARNING, "Logger"); logRecord.setThrown( new ArithmeticException()); // get Throwable object Throwable throwObj = logRecord.getThrown(); // print result System.out.println( "throwable object = " + throwObj .toString()); } }
Producción:
throwable object = java.lang.ArithmeticException
Referencias: https://docs.oracle.com/javase/10/docs/api/java/util/logging/LogRecord.html#getThrown()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA