// marshaller understands.
String errorCode = parseErrorCode(json);
if (errorCode == null || !errorCode.equals("WorkflowExecutionAlreadyStartedFault"))
return null;
WorkflowExecutionAlreadyStartedException e = (WorkflowExecutionAlreadyStartedException)super.unmarshall(json);
return e;
}