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

br.com.moip.resource.Errors Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
package br.com.moip.resource;

import java.util.ArrayList;
import java.util.List;

public class Errors {

    private final List errors = new ArrayList();

    public List getErrors() {
        return errors;
    }

    public void setError(ErrorBuilder error) { this.errors.add(error); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy