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

ar.com.system.afip.wsfe.business.impl.WsfeException Maven / Gradle / Ivy

package ar.com.system.afip.wsfe.business.impl;

import static com.google.common.base.Preconditions.checkNotNull;
import ar.com.system.afip.wsfe.service.api.WsfeError;

public class WsfeException extends RuntimeException {
	private static final long serialVersionUID = -4960037303683142255L;
	private final Iterable errors;

	public WsfeException(Iterable errors) {
		this.errors = checkNotNull(errors);
	}

	public Iterable getErrors() {
		return errors;
	}

	@Override
	public String toString() {
		return "WsfeException [errors=" + errors + "]";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy