mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 00:28:47 +00:00
30 lines
561 B
PHP
30 lines
561 B
PHP
<?php
|
|
|
|
namespace PhpAmqpLib\Exception;
|
|
|
|
class AMQPBasicCancelException extends \Exception implements AMQPExceptionInterface
|
|
{
|
|
/**
|
|
* @var string
|
|
* @internal Use getter getConsumerTag()
|
|
*/
|
|
public $consumerTag;
|
|
|
|
/**
|
|
* @param string $consumerTag
|
|
*/
|
|
public function __construct($consumerTag)
|
|
{
|
|
parent::__construct('Channel was canceled');
|
|
$this->consumerTag = $consumerTag;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getConsumerTag()
|
|
{
|
|
return $this->consumerTag;
|
|
}
|
|
}
|