%PDF- %PDF-
| Direktori : /home/bitrix/www/bitrix/modules/lists/lib/internals/error/ |
| Current File : /home/bitrix/www/bitrix/modules/lists/lib/internals/error/ierrorable.php |
<?php
namespace Bitrix\Lists\Internals\Error;
interface IErrorable
{
/**
* Getting array of errors.
* @return Error[]
*/
public function getErrors();
/**
* Getting array of errors with the necessary code.
* @param string $code Code of error.
* @return Error[]
*/
public function getErrorsByCode($code);
/**
* Getting once error with the necessary code.
* @param string $code Code of error.
* @return Error[]
*/
public function getErrorByCode($code);
}