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