/* 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
/* */ {
/* 194 */ QName faultCode = Constants.SOAP11_FAULT_CODE_SERVER;
/* 195 */ String faultString = reqEx.getMessage() != null ? reqEx.getMessage() : reqEx.toString();