Files
FHeD/vendor/php-http/httplug/src/Exception.php
Luke Tainton c7ca1d751f 📈 Add GlitchTip
Signed-off-by: Luke Tainton <luke@tainton.uk>
2020-08-05 18:24:40 +01:00

15 lines
289 B
PHP

<?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 <mark.sagikazar@gmail.com>
*/
interface Exception extends PsrClientException
{
}