12 lines
221 B
PHP
12 lines
221 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Xentral\Components\HttpClient\Exception;
|
||
|
|
|
||
|
|
use Xentral\Core\Exception\ComponentExceptionInterface;
|
||
|
|
|
||
|
|
interface HttpClientExceptionInterface extends ComponentExceptionInterface
|
||
|
|
{
|
||
|
|
}
|