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

com.brihaspathee.zeus.web.response.ApiExceptionList Maven / Gradle / Ivy

The newest version!
package com.brihaspathee.zeus.web.response;

import lombok.*;

import java.util.List;

/**
 * Created in Intellij IDEA
 * User: Balaji Varadharajan
 * Date: 20, January 2022
 * Time: 9:25 AM
 * Project: Zeus
 * Package Name: com.zeus.web.response
 * To change this template use File | Settings | File and Code Template
 */
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class ApiExceptionList {

    private List exceptions;

    @Override
    public String toString() {
        return "ApiExceptionList{" +
                "exceptions=" + exceptions +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy