aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/promise-timer/src/TimeoutException.php
diff options
context:
space:
mode:
Diffstat (limited to 'assets/php/vendor/react/promise-timer/src/TimeoutException.php')
-rwxr-xr-xassets/php/vendor/react/promise-timer/src/TimeoutException.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/assets/php/vendor/react/promise-timer/src/TimeoutException.php b/assets/php/vendor/react/promise-timer/src/TimeoutException.php
deleted file mode 100755
index 18ea72f..0000000
--- a/assets/php/vendor/react/promise-timer/src/TimeoutException.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-namespace React\Promise\Timer;
-
-use RuntimeException;
-
-class TimeoutException extends RuntimeException
-{
- private $timeout;
-
- public function __construct($timeout, $message = null, $code = null, $previous = null)
- {
- parent::__construct($message, $code, $previous);
-
- $this->timeout = $timeout;
- }
-
- public function getTimeout()
- {
- return $this->timeout;
- }
-}