com.microsoft.bingads.v13.bulk.ApiFaultDetail_Exception Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.
package com.microsoft.bingads.v13.bulk;
import javax.xml.ws.WebFault;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b130926.1035
* Generated source version: 2.1
*
*/
@WebFault(name = "ApiFaultDetail", targetNamespace = "https://bingads.microsoft.com/CampaignManagement/v13")
public class ApiFaultDetail_Exception
extends Exception
{
/**
* Java type that goes as soapenv:Fault detail element.
*
*/
private ApiFaultDetail faultInfo;
/**
*
* @param faultInfo
* @param message
*/
public ApiFaultDetail_Exception(String message, ApiFaultDetail faultInfo) {
super(message);
this.faultInfo = faultInfo;
}
/**
*
* @param faultInfo
* @param cause
* @param message
*/
public ApiFaultDetail_Exception(String message, ApiFaultDetail faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}
/**
*
* @return
* returns fault bean: com.microsoft.bingads.v13.bulk.ApiFaultDetail
*/
public ApiFaultDetail getFaultInfo() {
return faultInfo;
}
}