for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dafiti\Silex\Exception;
use Exception;
class ModuleIsNotInstalled extends \Exception
{
/**
* @param string $moduleName
*/
public function __construct($moduleName)
$message = sprintf('Module %s Is Not Loaded!', $moduleName);
parent::__construct($message);
}