uawdijnntqw1x1x1
IP : 18.116.15.98
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
axolotl
/
data
/
www
/
kirov.axolotls.ru
/
bitrix
/
modules
/
imopenlines
/
lib
/
error.php
/
/
<?php namespace Bitrix\ImOpenLines; /** * Error handling class. * @package Bitrix\ImOpenLines */ class Error extends \Bitrix\Main\Error { /** @var string */ protected $method; /** @var array */ protected $params; /** * Creates a new Error. * @param string $message Message of the error. * @param int|string $code Code of the error. * @param string $method * @param string|array $params */ public function __construct($message = '', $code = 0, $method = '', $params = Array()) { parent::__construct($message, $code); $this->method = $method; $this->params = $params; $debugBacktrace = debug_backtrace(); Log::write(array( 'message' => $message, 'code' => $code, 'params' => $params, 'file' => $debugBacktrace[0]['file'], 'method' => $method, 'line' => $debugBacktrace[0]['line'], )); } /** * Returns a method in which there was an error. * * @return string */ public function getMethod() { return $this->method; } /** * Returns parameters which were transferred to a method at the time of emergence of an error. * * @return array|null */ public function getParams() { return $this->params; } }
/var/www/axolotl/data/www/kirov.axolotls.ru/bitrix/modules/imopenlines/lib/error.php