
com.aventstack.chaintest.http.ErrorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chaintest-core Show documentation
Show all versions of chaintest-core Show documentation
Core Java client library for ChainTest framework
The newest version!
package com.aventstack.chaintest.http;
import lombok.Data;
import java.util.Date;
@Data
public class ErrorResponse {
private Throwable throwable;
private Date timestamp;
private int status;
private String error;
private String trace;
private String message;
private String path;
public ErrorResponse(final Throwable t) {
throwable = t;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy