Issues (20)

src/Exceptions/CommandNotFoundException.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Ballen\Clip\Exceptions;
4
5
/**
6
 * Clip
7
 * 
8
 * A package for speeding up development of PHP console (CLI) applications.
9
 *
10
 * @author Bobby Allen <[email protected]>
11
 * @license https://raw.githubusercontent.com/bobsta63/clip/master/LICENSE
12
 * @link https://github.com/bobsta63/clip
13
 * @link http://www.bobbyallen.me
14
 *
15
 */
16
class CommandNotFoundException extends \Exception
17
{
18
19 4
    public function __construct($message, $code = 0, Exception $previous = null)
0 ignored issues
show
The type Ballen\Clip\Exceptions\Exception was not found. Did you mean Exception? If so, make sure to prefix the type with \.
Loading history...
20
    {
21 4
        parent::__construct($message, $code, $previous);
22
    }
23
}
24