/var/www/cobraambalaj/vendor/symfony/http-kernel/Exception
NameSizeModeActions
AccessDeniedHttpException.php8720644editdlrm
BadRequestHttpException.php8170644editdlrm
ConflictHttpException.php8150644editdlrm
ControllerDoesNotReturnResponseException.php23340644editdlrm
GoneHttpException.php8110644editdlrm
HttpException.php11320644editdlrm
HttpExceptionInterface.php7100644editdlrm
InvalidMetadataException.php3480644editdlrm
LengthRequiredHttpException.php8210644editdlrm
MethodNotAllowedHttpException.php9730644editdlrm
NotAcceptableHttpException.php8200644editdlrm
NotFoundHttpException.php8220644editdlrm
PreconditionFailedHttpException.php8250644editdlrm
PreconditionRequiredHttpException.php8730644editdlrm
ServiceUnavailableHttpException.php10570644editdlrm
TooManyRequestsHttpException.php11000644editdlrm
UnauthorizedHttpException.php9690644editdlrm
UnexpectedSessionUsageException.php4160644editdlrm
UnprocessableEntityHttpException.php8350644editdlrm
UnsupportedMediaTypeHttpException.php8270644editdlrm
Edit: /var/www/cobraambalaj/vendor/symfony/http-kernel/Exception/UnauthorizedHttpException.php (969B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Exception; /** * @author Ben Ramsey */ class UnauthorizedHttpException extends HttpException { /** * @param string $challenge WWW-Authenticate challenge string * @param string|null $message The internal exception message * @param \Throwable|null $previous The previous exception * @param int|null $code The internal exception code */ public function __construct(string $challenge, ?string $message = '', \Throwable $previous = null, ?int $code = 0, array $headers = []) { $headers['WWW-Authenticate'] = $challenge; parent::__construct(401, $message, $previous, $headers, $code); } }