• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/orm/fields/validators/validator.php
  • Класс: BitrixMainORMFieldsValidatorsValidator
  • Вызов: Validator::__construct
public function __construct($errorPhrase = null)
{
	if ($errorPhrase !== null && !is_string($errorPhrase))
	{
		throw new ArgumentTypeException('errorPhrase', 'string');
	}

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