for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ballen\Clip\Exceptions;
/**
* Clip
*
* A package for speeding up development of PHP console (CLI) applications.
* @author Bobby Allen <[email protected]>
* @license https://raw.githubusercontent.com/bobsta63/clip/master/LICENSE
* @link https://github.com/bobsta63/clip
* @link http://www.bobbyallen.me
*/
class CommandNotFoundException extends \Exception
{
public function __construct($message, $code = 0, Exception $previous = null)
Ballen\Clip\Exceptions\Exception
Exception
\
parent::__construct($message, $code, $previous);
}