
ebx.ebx_dataservices.StandardException Maven / Gradle / Ivy
The newest version!
package ebx.ebx_dataservices;
import jakarta.xml.ws.WebFault;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 3.0.2
* Generated source version: 3.0
*
*/
@WebFault(name = "StandardException", targetNamespace = "urn:ebx-schemas:dataservices_1.0")
public class StandardException
extends Exception
{
/**
* Java type that goes as soapenv:Fault detail element.
*
*/
private schemas.ebx.dataservices_1.StandardException faultInfo;
/**
*
* @param faultInfo
* @param message
*/
public StandardException(String message, schemas.ebx.dataservices_1.StandardException faultInfo) {
super(message);
this.faultInfo = faultInfo;
}
/**
*
* @param faultInfo
* @param cause
* @param message
*/
public StandardException(String message, schemas.ebx.dataservices_1.StandardException faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}
/**
*
* @return
* returns fault bean: schemas.ebx.dataservices_1.StandardException
*/
public schemas.ebx.dataservices_1.StandardException getFaultInfo() {
return faultInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy