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

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

There is a newer version: 0.0.2
Show newest version
package br.com.cefis.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