
de.extra_standard.namespace.webservice.ExtraFault Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of extra-outputplugin-ws Show documentation
Show all versions of extra-outputplugin-ws Show documentation
eXTra Outputplugin für Webservices
The newest version!
package de.extra_standard.namespace.webservice;
import javax.xml.ws.WebFault;
import de.extra_standard.namespace.service._1.ExtraErrorType;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.1.5-b03-
* Generated source version: 2.1
*
*/
@WebFault(name = "ExtraError", targetNamespace = "http://www.extra-standard.de/namespace/service/1")
public class ExtraFault
extends Exception
{
/**
* Java type that goes as soapenv:Fault detail element.
*
*/
private ExtraErrorType faultInfo;
/**
*
* @param message
* @param faultInfo
*/
public ExtraFault(String message, ExtraErrorType faultInfo) {
super(message);
this.faultInfo = faultInfo;
}
/**
*
* @param message
* @param faultInfo
* @param cause
*/
public ExtraFault(String message, ExtraErrorType faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}
/**
*
* @return
* returns fault bean: de.extra_standard.namespace.service._1.ExtraErrorType
*/
public ExtraErrorType getFaultInfo() {
return faultInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy