All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aventstack.chaintest.http.ErrorResponse Maven / Gradle / Ivy

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