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

edu.ksu.canvas.errors.GenericErrorResponse Maven / Gradle / Ivy

The newest version!
package edu.ksu.canvas.errors;

import java.util.List;
import java.util.Map;

/**
 * The error object that is returned when the creation of certain objects fails because the data isn't good.
 * This allows you to retrieve more information about what was wrong with your request.
 */
public class GenericErrorResponse {

    private Map> errors;

    public Map> getErrors() {
        return errors;
    }

    public void setErrors(Map> errors) {
        this.errors = errors;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy