mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-27 00:25:06 +02:00
Add lib/PhpAmqpLib
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace PhpAmqpLib\Exception;
|
||||
|
||||
class AMQPBasicCancelException extends \Exception implements AMQPExceptionInterface
|
||||
{
|
||||
/** @var string */
|
||||
public $consumerTag;
|
||||
|
||||
/**
|
||||
* @param string $consumerTag
|
||||
*/
|
||||
public function __construct($consumerTag)
|
||||
{
|
||||
$this->consumerTag = $consumerTag;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user