summaryrefslogtreecommitdiff
path: root/vendor/php-http/httplug/src/Exception.php
blob: 4df164c9ac7319adf0d48c70d0391c64abba12cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Http\Client;

use Psr\Http\Client\ClientExceptionInterface as PsrClientException;

/**
 * Every HTTP Client related Exception must implement this interface.
 *
 * @author Márk Sági-Kazár <[email protected]>
 */
interface Exception extends PsrClientException
{
}