
jp.go.nict.langrid.commons.ws.soap.SoapFaultRpcFaultAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jp.go.nict.langrid.commons Show documentation
Show all versions of jp.go.nict.langrid.commons Show documentation
Common and utility library for the Service Grid Server Software and java web services.
The newest version!
package jp.go.nict.langrid.commons.ws.soap;
import javax.xml.soap.SOAPFault;
import jp.go.nict.langrid.commons.rpc.RpcFault;
public class SoapFaultRpcFaultAdapter extends RpcFault{
public SoapFaultRpcFaultAdapter(SOAPFault f) {
super(f.getFaultCode(), f.getFaultString(), f.getDetail().getTextContent());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy