1 2 3 4 5 6 7 8 9 10 11 12 13
package com.it_jaros.jscanner; public record ExceptionInfo( String type, String message ) { public static ExceptionInfo from(Throwable t) { return new ExceptionInfo( t.getClass().getName(), t.getMessage() ); } }