Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/vkapi.market/lib/ |
Upload File : |
<?php namespace VKapi\Market; /** * ����� ����� * Class Error * @package VKapi\Market */ class Error { private $code = ''; private $message = ''; private $arMore = array(); /** * ����������� �� ������� ����� * Error constructor. * * @param $message - ����� ����� * @param string $code - ��� ����� * @param array $arMore - ������ ����������� ���� */ public function __construct($message, $code = '', $arMore = array()) { $this->message = is_array($message) ? serialize($message) : $message; $this->code = $code; $this->arMore = $arMore; } /** * ������ ����� ����� * @return string */ public function getMessage() { return $this->message; } /** * ������ ��� ����� * @return string */ public function getCode() { return $this->code; } /** * ������ ����� ����������� ���� �� ����� * @return array */ public function getMore() { return $this->arMore; } /** * ������ ����� ����������� ���� �� ����� * @param string $name - �� * @param mixed $value - ������� */ public function setMore($name, $value) { $this->arMore[$name] = $value; } } ?>