for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cadre\Module;
use RuntimeException;
class AlreadyLoadedException extends RuntimeException
{
public function __construct($module, $verb, $replacesModule)
parent::__construct(sprintf(
'%s cannot %s %s because it is already loaded',
$module,
$verb,
$replacesModule
));
}