liquibase.logging.mdc.customobjects.ExceptionDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.logging.mdc.customobjects;
import liquibase.logging.mdc.CustomMdcObject;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class ExceptionDetails implements CustomMdcObject {
private String primaryException;
private String primaryExceptionReason;
private String primaryExceptionSource;
private String exception;
public ExceptionDetails() {
}
}