%PDF- %PDF-
Direktori : /var/www/html/hrsys/api/vendor/laravel/passport/src/Http/Controllers/ |
Current File : /var/www/html/hrsys/api/vendor/laravel/passport/src/Http/Controllers/HandlesOAuthErrors.php |
<?php namespace Laravel\Passport\Http\Controllers; use Laminas\Diactoros\Response as Psr7Response; use Laravel\Passport\Exceptions\OAuthServerException; use League\OAuth2\Server\Exception\OAuthServerException as LeagueException; trait HandlesOAuthErrors { use ConvertsPsrResponses; /** * Perform the given callback with exception handling. * * @param \Closure $callback * @return mixed * * @throws \Laravel\Passport\Exceptions\OAuthServerException */ protected function withErrorHandling($callback) { try { return $callback(); } catch (LeagueException $e) { throw new OAuthServerException( $e, $this->convertResponse($e->generateHttpResponse(new Psr7Response)) ); } } }