
com.bronto.api.model.ApiException_Exception Maven / Gradle / Ivy
The newest version!
package com.bronto.api.model;
import javax.xml.ws.WebFault;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.4-b01
* Generated source version: 2.2
*
*/
@WebFault(name = "ApiException", targetNamespace = "http://api.bronto.com/v4")
public class ApiException_Exception
extends Exception
{
private static final long serialVersionUID = 2921604280815602362L;
/**
* Java type that goes as soapenv:Fault detail element.
*
*/
private ApiException faultInfo;
/**
*
* @param message
* @param faultInfo
*/
public ApiException_Exception(String message, ApiException faultInfo) {
super(message);
this.faultInfo = faultInfo;
}
/**
*
* @param message
* @param faultInfo
* @param cause
*/
public ApiException_Exception(String message, ApiException faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}
/**
*
* @return
* returns fault bean: com.bronto.api.model.ApiException
*/
public ApiException getFaultInfo() {
return faultInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy