summaryrefslogtreecommitdiff
path: root/vendor/symfony/contracts/HttpClient/Exception
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/contracts/HttpClient/Exception')
-rw-r--r--vendor/symfony/contracts/HttpClient/Exception/ClientExceptionInterface.php23
-rw-r--r--vendor/symfony/contracts/HttpClient/Exception/ExceptionInterface.php23
-rw-r--r--vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php26
-rw-r--r--vendor/symfony/contracts/HttpClient/Exception/RedirectionExceptionInterface.php23
-rw-r--r--vendor/symfony/contracts/HttpClient/Exception/ServerExceptionInterface.php23
-rw-r--r--vendor/symfony/contracts/HttpClient/Exception/TransportExceptionInterface.php23
6 files changed, 0 insertions, 141 deletions
diff --git a/vendor/symfony/contracts/HttpClient/Exception/ClientExceptionInterface.php b/vendor/symfony/contracts/HttpClient/Exception/ClientExceptionInterface.php
deleted file mode 100644
index 5b5fa5084e..0000000000
--- a/vendor/symfony/contracts/HttpClient/Exception/ClientExceptionInterface.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Contracts\HttpClient\Exception;
-
-/**
- * When a 4xx response is returned.
- *
- * @author Nicolas Grekas <p@tchwork.com>
- *
- * @experimental in 1.1
- */
-interface ClientExceptionInterface extends HttpExceptionInterface
-{
-}
diff --git a/vendor/symfony/contracts/HttpClient/Exception/ExceptionInterface.php b/vendor/symfony/contracts/HttpClient/Exception/ExceptionInterface.php
deleted file mode 100644
index 6d59715f70..0000000000
--- a/vendor/symfony/contracts/HttpClient/Exception/ExceptionInterface.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Contracts\HttpClient\Exception;
-
-/**
- * The base interface for all exceptions in the contract.
- *
- * @author Nicolas Grekas <p@tchwork.com>
- *
- * @experimental in 1.1
- */
-interface ExceptionInterface extends \Throwable
-{
-}
diff --git a/vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php b/vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php
deleted file mode 100644
index 0e9f39f6ee..0000000000
--- a/vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Contracts\HttpClient\Exception;
-
-use Symfony\Contracts\HttpClient\ResponseInterface;
-
-/**
- * Base interface for HTTP-related exceptions.
- *
- * @author Anton Chernikov <anton_ch1989@mail.ru>
- *
- * @experimental in 1.1
- */
-interface HttpExceptionInterface extends ExceptionInterface
-{
- public function getResponse(): ResponseInterface;
-}
diff --git a/vendor/symfony/contracts/HttpClient/Exception/RedirectionExceptionInterface.php b/vendor/symfony/contracts/HttpClient/Exception/RedirectionExceptionInterface.php
deleted file mode 100644
index 8cdd3e70d7..0000000000
--- a/vendor/symfony/contracts/HttpClient/Exception/RedirectionExceptionInterface.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Contracts\HttpClient\Exception;
-
-/**
- * When a 3xx response is returned and the "max_redirects" option has been reached.
- *
- * @author Nicolas Grekas <p@tchwork.com>
- *
- * @experimental in 1.1
- */
-interface RedirectionExceptionInterface extends HttpExceptionInterface
-{
-}
diff --git a/vendor/symfony/contracts/HttpClient/Exception/ServerExceptionInterface.php b/vendor/symfony/contracts/HttpClient/Exception/ServerExceptionInterface.php
deleted file mode 100644
index f994ba2ddc..0000000000
--- a/vendor/symfony/contracts/HttpClient/Exception/ServerExceptionInterface.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Contracts\HttpClient\Exception;
-
-/**
- * When a 5xx response is returned.
- *
- * @author Nicolas Grekas <p@tchwork.com>
- *
- * @experimental in 1.1
- */
-interface ServerExceptionInterface extends HttpExceptionInterface
-{
-}
diff --git a/vendor/symfony/contracts/HttpClient/Exception/TransportExceptionInterface.php b/vendor/symfony/contracts/HttpClient/Exception/TransportExceptionInterface.php
deleted file mode 100644
index 1cdc30a2fc..0000000000
--- a/vendor/symfony/contracts/HttpClient/Exception/TransportExceptionInterface.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Contracts\HttpClient\Exception;
-
-/**
- * When any error happens at the transport level.
- *
- * @author Nicolas Grekas <p@tchwork.com>
- *
- * @experimental in 1.1
- */
-interface TransportExceptionInterface extends ExceptionInterface
-{
-}