18 lines
338 B
Java
18 lines
338 B
Java
package ghast.logger;
|
|
|
|
import lombok.Getter;
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
@RequiredArgsConstructor
|
|
@Getter
|
|
public class FormattingPair {
|
|
|
|
private final String message;
|
|
private final Throwable throwable;
|
|
|
|
public FormattingPair(String message) {
|
|
this.message = message;
|
|
this.throwable = null;
|
|
}
|
|
}
|