summaryrefslogtreecommitdiff
path: root/src/main/java/com/it_jaros/jscanner/ExceptionInfo.java
blob: ab92a5b9659e25514f2ce537b6bce86429621526 (plain) (blame)
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()
        );
    }
}