/* */ {
/* 181 */ faultEx = (SOAPFaultException)reqEx;
/* */ }
/* 183 */ else if ((reqEx instanceof CommonSOAPFaultException))
/* */ {
/* 185 */ CommonSOAPFaultException soapEx = (CommonSOAPFaultException)reqEx;
/* 186 */ QName faultCode = soapEx.getFaultCode();
/* 187 */ String faultString = soapEx.getFaultString();
/* 188 */ Throwable cause = soapEx.getCause();
/* 189 */ SOAPFaultException faultEx = new SOAPFaultException(faultCode, faultString, null, null);
/* 190 */ faultEx.initCause(cause);
/* */ }
/* */ else
/* */ {