mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-03-27 07:40:22 +01:00
24 lines
471 B
PHP
24 lines
471 B
PHP
<?php
|
|
namespace GuzzleHttp\Exception;
|
|
|
|
use Throwable;
|
|
|
|
if (interface_exists(Throwable::class)) {
|
|
interface GuzzleException extends Throwable
|
|
{
|
|
}
|
|
} else {
|
|
/**
|
|
* @method string getMessage()
|
|
* @method \Throwable|null getPrevious()
|
|
* @method mixed getCode()
|
|
* @method string getFile()
|
|
* @method int getLine()
|
|
* @method array getTrace()
|
|
* @method string getTraceAsString()
|
|
*/
|
|
interface GuzzleException
|
|
{
|
|
}
|
|
}
|