
com.jcute.basic.logging.LoggerFormatterTuple Maven / Gradle / Ivy
The newest version!
package com.jcute.basic.logging;
public class LoggerFormatterTuple{
private final String message;
private final Throwable throwable;
public LoggerFormatterTuple(String message,Throwable throwable){
this.message = message;
this.throwable = throwable;
}
public String getMessage(){
return message;
}
public Throwable getThrowable(){
return throwable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy