File tree Expand file tree Collapse file tree 3 files changed +9
-34
lines changed
Expand file tree Collapse file tree 3 files changed +9
-34
lines changed Original file line number Diff line number Diff line change 11<?php
22
3- /*
4- * This file is part of the Http Adapter package.
5- *
6- * (c) Eric GELOEN <geloen.eric@gmail.com>
7- *
8- * For the full copyright and license information, please read the LICENSE
9- * file that was distributed with this source code.
10- */
11-
12- namespace Http \Adapter ;
3+ namespace Http \Client ;
134
145/**
6+ * Every HTTP Client related Exception should implement this interface
7+ *
158 * @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
169 */
1710interface Exception
Original file line number Diff line number Diff line change 11<?php
22
3- /*
4- * This file is part of the Http Adapter package.
5- *
6- * (c) Eric GELOEN <geloen.eric@gmail.com>
7- *
8- * For the full copyright and license information, please read the LICENSE
9- * file that was distributed with this source code.
10- */
11-
12- namespace Http \Adapter \Exception ;
3+ namespace Http \Client \Exception ;
134
14- use Http \Adapter \Exception ;
5+ use Http \Client \Exception ;
156use Psr \Http \Message \RequestInterface ;
167use Psr \Http \Message \ResponseInterface ;
178
189/**
1910 * @author GeLo <geloen.eric@gmail.com>
2011 */
21- class HttpAdapterException extends \Exception implements Exception
12+ class HttpClientException extends \Exception implements Exception
2213{
2314 /**
2415 * @var RequestInterface|null
Original file line number Diff line number Diff line change 11<?php
22
3- /*
4- * This file is part of the Http Adapter package.
5- *
6- * (c) Eric GELOEN <geloen.eric@gmail.com>
7- *
8- * For the full copyright and license information, please read the LICENSE
9- * file that was distributed with this source code.
10- */
11-
12- namespace Http \Adapter \Exception ;
3+ namespace Http \Client \Exception ;
134
14- use Http \Adapter \Exception ;
5+ use Http \Client \Exception ;
156use Psr \Http \Message \ResponseInterface ;
167
178/**
189 * @author GeLo <geloen.eric@gmail.com>
1910 */
20- class MultiHttpAdapterException extends \Exception implements Exception
11+ class MultiHttpClientException extends \Exception implements Exception
2112{
2213 /**
2314 * @var HttpAdapterException[]
You can’t perform that action at this time.
0 commit comments