• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/errorcode.php
  • Класс: Bitrix\Crm\Controller\ErrorCode
  • Вызов: ErrorCode::getRequiredArgumentMissingError
static function getRequiredArgumentMissingError(string $argumentName): Error
{
	static::loadMessages();

	return new Error(
		"Argument '{$argumentName}' is required",
		static::REQUIRED_ARG_MISSING,
		[
			'ARGUMENT_NAME' => $argumentName,
		]
	);
}