com.helger.peppol.smlclient.participant.BadRequestFault Maven / Gradle / Ivy
package com.helger.peppol.smlclient.participant;
import javax.xml.ws.WebFault;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b14002
* Generated source version: 2.1
*
*/
@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 message
* @param faultInfo
*/
public BadRequestFault(String message, FaultType faultInfo) {
super(message);
this.faultInfo = faultInfo;
}
/**
*
* @param message
* @param faultInfo
* @param cause
*/
public BadRequestFault(String message, FaultType faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}
/**
*
* @return
* returns fault bean: com.helger.peppol.smlclient.participant.FaultType
*/
public FaultType getFaultInfo() {
return faultInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy