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

io.rocketbase.commons.dto.ErrorResponse Maven / Gradle / Ivy

package io.rocketbase.commons.dto;

import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.Map;

@Data
@NoArgsConstructor
public class ErrorResponse {

    private Integer status;
    private String message;

    private Map fields;

    public ErrorResponse(Integer status, String message) {
        this.status = status;
        this.message = message;
    }

    public ErrorResponse(String errorMessage) {
        this.message = message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy