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; } }