• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/util/assert.php
  • Класс: BitrixTasksUtilAssert
  • Вызов: Assert::expectStringNotNull
static function expectStringNotNull($arg, $argName = '', $customMsg = '')
{
	if($arg == '')
		throw new MainArgumentException(self::formMessage('TASKS_ASSERT_STRING_NOTNULL_EXPECTED', $argName, $customMsg));

	return (string) $arg;
}