for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace R\Hive\Concrete\Exceptions;
class NoSupportedHandlerFoundException extends DomainException
{
public function __construct($serial)
$message = sprintf('Command with serial [%s] has no associated handler.', $serial);
parent::__construct($message);
}