mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-27 08:02:51 +02:00
Add lib/PhpAmqpLib
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
namespace PhpAmqpLib\Exception;
|
||||
|
||||
//TODO refactor usage of static methods
|
||||
use PhpAmqpLib\Channel\AbstractChannel;
|
||||
use PhpAmqpLib\Helper\MiscHelper;
|
||||
|
||||
class AMQPProtocolException extends \Exception implements AMQPExceptionInterface
|
||||
{
|
||||
/** @var string */
|
||||
public $amqp_reply_code;
|
||||
|
||||
/** @var int */
|
||||
public $amqp_reply_text;
|
||||
|
||||
/** @var \Exception */
|
||||
public $amqp_method_sig;
|
||||
|
||||
/** @var array */
|
||||
public $args;
|
||||
|
||||
/**
|
||||
* @param string $reply_code
|
||||
* @param int $reply_text
|
||||
* @param \Exception $method_sig
|
||||
*/
|
||||
public function __construct($reply_code, $reply_text, $method_sig)
|
||||
{
|
||||
parent::__construct($reply_text, $reply_code);
|
||||
|
||||
$this->amqp_reply_code = $reply_code; // redundant, but kept for BC
|
||||
$this->amqp_reply_text = $reply_text; // redundant, but kept for BC
|
||||
$this->amqp_method_sig = $method_sig;
|
||||
|
||||
$ms = MiscHelper::methodSig($method_sig);
|
||||
|
||||
$PROTOCOL_CONSTANTS_CLASS = AbstractChannel::$PROTOCOL_CONSTANTS_CLASS;
|
||||
$mn = isset($PROTOCOL_CONSTANTS_CLASS::$GLOBAL_METHOD_NAMES[$ms])
|
||||
? $PROTOCOL_CONSTANTS_CLASS::$GLOBAL_METHOD_NAMES[$ms]
|
||||
: $mn = '';
|
||||
|
||||
$this->args = array($reply_code, $reply_text, $method_sig, $mn);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user