for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace As3\Modlr\Search;
use As3\Modlr\Exception\AbstractHttpException;
/**
* Search client exceptions.
*
* @author Jacob Bare <[email protected]>
*/
class ClientException extends AbstractHttpException
{
public static function clientNotFound($key)
return new self(
sprintf(
'Unable to handle search operations. No search client found for type "%s"',
$key
),
500,
__FUNCTION__
);
}