We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecf636c commit 23d754aCopy full SHA for 23d754a
src/ClosedException.php
@@ -0,0 +1,11 @@
1
+<?php declare(strict_types=1);
2
+
3
+namespace WyriHaximus\React\Parallel;
4
5
+final class ClosedException extends \Exception
6
+{
7
+ public static function create(): self
8
+ {
9
+ return new self('Pool is closed and won\'t run your Closure');
10
+ }
11
+}
src/ClosingException.php
@@ -0,0 +1,7 @@
+final class ClosingException extends \Exception
0 commit comments