aboutsummaryrefslogtreecommitdiff
path: root/src/exceptions/JobInterruptedException.php
blob: c645cc5bbffd537bad2a420b7506ea68d9039e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace jobd\exceptions;

class JobInterruptedException extends \Exception {

    public function __construct(int $code = 1, string $message = "") {
        parent::__construct($message, $code);
    }

}