![JAR search and dependency download from the Maven repository](/logo.png)
org.busdox.servicemetadata.manageservicemetadataservice._1.BadRequestFault Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-busdox Show documentation
Show all versions of commons-busdox Show documentation
Busdox artifacts for Java.
The newest version!
package org.busdox.servicemetadata.manageservicemetadataservice._1;
import javax.xml.ws.WebFault;
import org.busdox.servicemetadata.locator._1.FaultType;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.10
* Generated source version: 2.2
*
*/
@WebFault(name = "BadRequestFault", targetNamespace = "http://busdox.org/serviceMetadata/locator/1.0/")
public class BadRequestFault
extends Exception
{
/**
* Java type that goes as soapenv:Fault detail element.
*
*/
private FaultType faultInfo;
/**
*
* @param faultInfo
* @param message
*/
public BadRequestFault(String message, FaultType faultInfo) {
super(message);
this.faultInfo = faultInfo;
}
/**
*
* @param faultInfo
* @param cause
* @param message
*/
public BadRequestFault(String message, FaultType faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}
/**
*
* @return
* returns fault bean: org.busdox.servicemetadata.locator._1.FaultType
*/
public FaultType getFaultInfo() {
return faultInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy