mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-07-08 05:51:05 -07:00
* Simplifies & beautifies everything * Introduces a new Class system. * Errors are defaulted to AWS's handler. * New function names & more efficient handling. * Should fix a majority of the errors. Please read the README for more!
23 lines
471 B
PHP
23 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
|
|
{
|
|
}
|
|
}
|