diff options
Diffstat (limited to 'src/exceptions')
-rw-r--r-- | src/exceptions/JobInterruptedException.php | 11 | ||||
-rw-r--r-- | src/exceptions/JobdException.php | 5 |
2 files changed, 16 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 diff --git a/src/exceptions/JobdException.php b/src/exceptions/JobdException.php new file mode 100644 index 0000000..59b218c --- /dev/null +++ b/src/exceptions/JobdException.php @@ -0,0 +1,5 @@ +<?php + +namespace jobd\exceptions; + +class JobdException extends \Exception {}
\ No newline at end of file |