
com.google.api.ads.dfp.jaxws.v201602.ApiException Maven / Gradle / Ivy
Show all versions of dfp-appengine Show documentation
package com.google.api.ads.dfp.jaxws.v201602;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
*
* Exception class for holding a list of service errors.
*
*
* Java class for ApiException complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ApiException">
* <complexContent>
* <extension base="{https://www.google.com/apis/ads/publisher/v201602}ApplicationException">
* <sequence>
* <element name="errors" type="{https://www.google.com/apis/ads/publisher/v201602}ApiError" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApiException", propOrder = {
"errors"
})
public class ApiException
extends ApplicationException
{
protected List errors;
/**
* Gets the value of the errors property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the errors property.
*
*
* For example, to add a new item, do as follows:
*
* getErrors().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ApiError }
*
*
*/
public List getErrors() {
if (errors == null) {
errors = new ArrayList();
}
return this.errors;
}
}