• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/util/error.php
  • Класс: BitrixTasksUtilError
  • Вызов: Error::__construct
public function __construct($message, $code = 0, $type = false, $data = null)
{
	parent::__construct($message, $code);

	if(!$type)
	{
		$type = static::TYPE_FATAL;
	}
	$this->type = $type;

	if($data !== null)
	{
		$this->data = $data;
	}
}