Issues (3)

src/Exceptions/ExecutionException.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Ballen\Executioner\Exceptions;
4
5
/**
6
 * Executioner Process Execution Library
7
 * Executioner is a PHP library for executing system processes
8
 * and applications with the ability to pass extra arguments and read
9
 *  CLI output results.
10
 *
11
 * @author     Bobby Allen <[email protected]>
12
 * @package    Ballen\Executioner
13
 * @license    http://opensource.org/licenses/MIT
14
 * @link       https://github.com/allebb/executioner
15
 */
16
class ExecutionException extends \Exception
17
{
18
19
    public function __construct($message, $code = 0, Exception $previous = null)
0 ignored issues
show
The type Ballen\Executioner\Exceptions\Exception was not found. Did you mean Exception? If so, make sure to prefix the type with \.
Loading history...
20
    {
21
        parent::__construct($message, $code, $previous);
22
    }
23
}
24