• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/response.php
  • Класс: CDavResponse
  • Вызов: CDavResponse::GenerateError
public function GenerateError($error, $message = "")
{
	$this->SetHttpStatus($error);
	$this->AddHeader('Content-Type: text/html');
	$this->AddLine("Error %s", $error);
	$this->AddLine("

%s

", $error); $this->AddLine("The requested could not be handled by this server."); $this->AddLine("(URI %s)
n
", $this->requestUri); if ($message <> '') $this->AddLine("%s
n
", $message); $this->AddLine(""); }