mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
15 lines
289 B
PHP
Executable File
15 lines
289 B
PHP
Executable File
<?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
|
|
{
|
|
}
|