summaryrefslogtreecommitdiff
path: root/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php')
-rw-r--r--vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php b/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php
deleted file mode 100644
index 27b2722..0000000
--- a/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?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
- {
- }
-}