El método setThrown() de java.util.logging.LogRecord se usa para 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 void setThrown(Throwable thrown)
Parámetros: este método acepta throw como parámetro, que es un objeto arrojable. También puede ser nulo.
Retorno : este método no devuelve nada.
Los siguientes programas ilustran el método setThrown():
Programa 1:
// Java program to illustrate setThrown() 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.SEVERE, "Hello Logger"); // set throwable object logRecord.setThrown( new IOException( "Error in Input")); // print the method name System.out.println( "throwable object Message = " + logRecord.getThrown() .toString()); } }
Producción:
throwable object Message = java.io.IOException: Error in Input
Programa 2:
// Java program to illustrate setThrown() 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.SEVERE, "Hello Logger"); // create a throwable object Exception exception = new ArithmeticException( "divide by 0"); // set throwable object logRecord.setThrown(exception); // print the result System.out.println( "throwable object = " + logRecord.getThrown() .toString()); } }
Producción:
throwable object = java.lang.ArithmeticException: divide by 0
Referencias: https://docs.oracle.com/javase/10/docs/api/java/util/logging/LogRecord.html#setThrown(java.lang.Throwable)
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA