
br.com.moip.models.error.Errors Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-java Show documentation
Show all versions of sdk-java Show documentation
Java SDK for Moip APIs integration
The newest version!
package br.com.moip.models.error;
import java.util.ArrayList;
import java.util.List;
public class Errors {
private final List errors = new ArrayList<>();
public List getErrors() { return errors; }
/**
* This method adds a Moip error object to the errors list.
*
* @param error
* {@code br.com.moip.models.error.Error} object
*/
public void setError(ErrorBuilder error) { this.errors.add(error); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy