uawdijnntqw1x1x1
IP : 216.73.216.87
Hostname : www.vorobey-market.ru
Kernel : Linux www.vorobey-market.ru 3.10.0-514.el7.x86_64 #1 SMP Tue Nov 22 16:42:41 UTC 2016 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
bitrix
/
vorobey-clubru
/
478ab
/
..
/
bitrix
/
modules
/
main
/
lib
/
error.php
/
/
<?php /** * Bitrix Framework * @package bitrix * @subpackage main * @copyright 2001-2015 Bitrix */ namespace Bitrix\Main; class Error { /** @var int|string */ protected $code; /** @var string */ protected $message; /** * Creates a new Error. * @param string $message Message of the error. * @param int|string $code Code of the error. */ public function __construct($message, $code = 0) { $this->message = $message; $this->code = $code; } /** * Returns the code of the error. * @return int|string */ public function getCode() { return $this->code; } /** * Returns the message of the error. * @return string */ public function getMessage() { return $this->message; } public function __toString() { return $this->getMessage(); } }
/home/bitrix/vorobey-clubru/478ab/../bitrix/modules/main/lib/error.php