openstackid/app/libs/oauth2/exceptions/OAuth2ResourceServerExcepti...

66 lines
1.3 KiB
PHP

<?php
namespace oauth2\exceptions;
use Exception;
/**
* Class OAuth2ResourceServerException
* @package oauth2\exceptions
*/
class OAuth2ResourceServerException extends Exception
{
/**
* @var string
*/
private $http_code;
/**
* @var int
*/
private $error;
/**
* @var Exception
*/
private $error_description;
/**
* @var null
*/
private $scope;
/**
* @param string $http_code
* @param int $error
* @param Exception $error_description
* @param null $scope
*/
public function __construct($http_code,$error,$error_description,$scope = null)
{
$this->http_code = $http_code;
$this->error = $error;
$this->error_description = $error_description;
$this->scope = $scope;
$message = "Resource Server Exception : " . sprintf('http code : %s - error : %s - error description: %s',$http_code,$error, $error_description);
parent::__construct($message, 0, null);
}
public function getError()
{
return $this->error;
}
public function getErrorDescription()
{
return $this->error_description;
}
public function getScope()
{
return $this->scope;
}
public function getHttpCode()
{
return $this->http_code;
}
}