blob: 331ff7586e023ae588296220b3bb74279802b5a6 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\Translation\Exception;
13
14use Symfony\Contracts\HttpClient\ResponseInterface;
15
16/**
17 * @author Fabien Potencier <fabien@symfony.com>
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020018 */
19class ProviderException extends RuntimeException implements ProviderExceptionInterface
20{
21 private $response;
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010022 private string $debug;
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020023
24 public function __construct(string $message, ResponseInterface $response, int $code = 0, \Exception $previous = null)
25 {
26 $this->response = $response;
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010027 $this->debug = $response->getInfo('debug') ?? '';
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020028
29 parent::__construct($message, $code, $previous);
30 }
31
32 public function getResponse(): ResponseInterface
33 {
34 return $this->response;
35 }
36
37 public function getDebug(): string
38 {
39 return $this->debug;
40 }
41}