.toByteArray());
response.mergeFrom(responseBytes);
return true;
} catch (InvalidProtocolBufferException ex) {
ms.getErrorHandler().handleServiceError(
new MemcacheServiceException("Could not decode response:", ex));
} catch (com.google.apphosting.api.ApiProxy.ApplicationException ae) {
logger.info((new StringBuilder())
.append(errorText)
.append(": ")
.append(ae.getErrorDetail())
.toString());
ms.getErrorHandler().handleServiceError(
new MemcacheServiceException(errorText));
} catch (com.google.apphosting.api.ApiProxy.ApiProxyException ex) {
ms.getErrorHandler().handleServiceError(
new MemcacheServiceException(errorText, ex));
}
return false;
}