mirror of
https://gitee.com/liuxioabin/fengketrade.git
synced 2026-04-19 05:23:18 +08:00
11 lines
171 B
PHP
11 lines
171 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Psr\Http\Client;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Every HTTP client related exception MUST implement this interface.
|
||
|
|
*/
|
||
|
|
interface ClientExceptionInterface extends \Throwable
|
||
|
|
{
|
||
|
|
}
|