// marshaller understands.
String errorCode = parseErrorCode(json);
if (errorCode == null || !errorCode.equals("InvalidParameterValueException"))
return null;
InvalidParameterValueException e = (InvalidParameterValueException)super.unmarshall(json);
e.setType(parseMember("Type", json));
e.setCode(parseMember("Code", json));
return e;
}