* @param traceLog
* @throws MessageCreationException
*/
private void throwMessageCreationException(Exception exp, final DebugTrace traceLog) throws MessageCreationException{
if(traceLog == null){
throw new MessageCreationException(this.soapVersion,exp);
}else{
throw new MessageCreationException(this.soapVersion,exp){
private static final long serialVersionUID = 1L;
public Message getFaultMessage() {
return new TrackedMessage(super.getFaultMessage(),traceLog);
}