From f6c4ec041891b92e81dc422eba0ff88dafb57487 Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Thu, 26 Oct 2023 18:43:35 +0200 Subject: [PATCH] [5.4] Remove unused test fixtures --- Tests/Stamp/StringErrorCodeException.php | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Tests/Stamp/StringErrorCodeException.php diff --git a/Tests/Stamp/StringErrorCodeException.php b/Tests/Stamp/StringErrorCodeException.php deleted file mode 100644 index 63d6f88e..00000000 --- a/Tests/Stamp/StringErrorCodeException.php +++ /dev/null @@ -1,21 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Messenger\Tests\Stamp; - -class StringErrorCodeException extends \Exception -{ - public function __construct(string $message, string $code) - { - parent::__construct($message); - $this->code = $code; - } -}