diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2023-04-13 02:14:53 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2023-04-13 02:14:53 +0300 |
commit | d0fa8d6f63003a6cb2f1897158bc587ab2344ea3 (patch) | |
tree | 5a6c165e928354a59eea48030c5de51067d381e4 /src/exceptions/JobInterruptedException.php | |
parent | 5272c5f541a75b2a7824df4264ad7e69c6e346fa (diff) |
1.6.0: support signals
Diffstat (limited to 'src/exceptions/JobInterruptedException.php')
-rw-r--r-- | src/exceptions/JobInterruptedException.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/exceptions/JobInterruptedException.php b/src/exceptions/JobInterruptedException.php new file mode 100644 index 0000000..c645cc5 --- /dev/null +++ b/src/exceptions/JobInterruptedException.php @@ -0,0 +1,11 @@ +<?php + +namespace jobd\exceptions; + +class JobInterruptedException extends \Exception { + + public function __construct(int $code = 1, string $message = "") { + parent::__construct($message, $code); + } + +}
\ No newline at end of file |