![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/medad.corals.io/vendor/laravel/passport/src/Exceptions/ |
<?php namespace Laravel\Passport\Exceptions; use Exception; use Illuminate\Http\Response; use League\OAuth2\Server\Exception\OAuthServerException as LeagueException; class OAuthServerException extends Exception { /** * The response to render. * * @var \Illuminate\Http\Response */ protected $response; /** * Create a new OAuthServerException. * * @param \League\OAuth2\Server\Exception\OAuthServerException $e * @param \Illuminate\Http\Response $response * @return void */ public function __construct(LeagueException $e, Response $response) { parent::__construct($e->getMessage(), $e->getCode(), $e); $this->response = $response; } /** * Render the exception into an HTTP response. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function render($request) { return $this->response; } /** * Get the HTTP response status code. * * @return int */ public function statusCode() { return $this->response->getStatusCode(); } }