for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Freyo\LaravelQueueCMQ\Queue\Driver;
class CMQClientNetworkException extends CMQClientException
{
/* 网络异常
@note: 检查endpoint是否正确、本机网络是否正常等;
*/
public function __construct($message, $code = -1, $data = [])
parent::__construct($message, $code, $data);
}
public function __toString()
return 'CMQClientNetworkException '.$this->get_info();