Your IP : 18.191.50.205


Current Path : /var/www/admin_ftp_12/data/www/httpdocs/bitrix/modules/main/lib/
Upload File :
Current File : /var/www/admin_ftp_12/data/www/httpdocs/bitrix/modules/main/lib/errorable.php

<?php

namespace Bitrix\Main;

interface Errorable
{
	/**
	 * Getting array of errors.
	 * @return Error[]
	 */
	public function getErrors();

	/**
	 * Getting once error with the necessary code.
	 * @param string $code Code of error.
	 * @return Error
	 */
	public function getErrorByCode($code);
}