}
@Override
public String parseResult(Object rawResponse) throws InfusionsoftResponseParsingException, InfusionsoftAuthorizationFailureException {
if(rawResponse == null || !(rawResponse instanceof String)){
throw new InfusionsoftAuthorizationFailureException(("Unable to authenticate to get temporary API key. " + rawResponse)); //sadly, we never reach this because XmlRpcException is thrown
}
return (String)rawResponse;
}