Files
Phraseanet/lib/Alchemy/Phrasea/Authentication/Exception/AuthenticationException.php
2013-05-29 14:23:14 +02:00

22 lines
420 B
PHP

<?php
namespace Alchemy\Phrasea\Authentication\Exception;;
use Alchemy\Phrasea\Exception\RuntimeException;
use Symfony\Component\HttpFoundation\Response;
class AuthenticationException extends RuntimeException
{
private $response;
public function __construct(Response $response)
{
$this->response = $response;
}
public function getResponse()
{
return $this->response;
}
}