for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* CRM library
* @author Tao <[email protected]>
*/
namespace Slince\Crm\Exception;
class RegistryNotExistsException extends InvalidArgumentException
{
public function __construct($name)
parent::__construct(sprintf("Registry [%s] does not exist", $name));
}