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
/
bitrix
/
modules
/
scale
/
lib
/
exceptions.php
/
/
<?php namespace Bitrix\Scale; use \Bitrix\Main\SystemException; /** * Exception is thrown when we can't comunicate with the slave server. */ class ServerBxInfoException extends SystemException { protected $hostname; public function __construct($message = "", $hostname = "", \Exception $previous = null) { parent::__construct($message, 0, '', 0, $previous); $this->hostname= $hostname; } public function getHostname() { return $this->hostname; } } /** * Class NeedMoreUserInfoException * @package Bitrix\Scale * If we need more info from user to execute action */ class NeedMoreUserInfoException extends SystemException { protected $actionParams; public function __construct($message = "", $actionParams = array(), \Exception $previous = null) { parent::__construct($message, 0, '', 0, $previous); $this->actionParams= $actionParams; } public function getActionParams() { return $this->actionParams; } }
/home/bitrix/vorobey-clubru/bitrix/modules/scale/lib/exceptions.php