for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the FOSHttpCache package.
*
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FOS\HttpCache\Exception;
use Http\Client\Exception\HttpException;
/**
* Wrapping an error response from the caching proxy.
class ProxyResponseException extends \RuntimeException implements HttpCacheException
{
* @return ProxyResponseException
public static function proxyResponse(HttpException $exception)
$message = sprintf(
'%s error response "%s" from caching proxy',
$exception->getResponse()->getStatusCode(),
$exception->getResponse()->getReasonPhrase()
);
return new self($message, 0, $exception);
}